Showing
1 changed file
with
21 additions
and
1 deletions
| ... | ... | @@ -38,7 +38,7 @@ |
| 38 | 38 | <view class="grid-item" v-for="(g, idx) in it.items" :key="idx" v-if="!g.hidden" |
| 39 | 39 | @click="navigateTo(g.link)"> |
| 40 | 40 | <image class="grid-icon" :src="g.icon" /> |
| 41 | - <text class="grid-text omit1">{{ g.text }}</text> | |
| 41 | + <text class="grid-text omit2">{{ g.text }}</text> | |
| 42 | 42 | </view> |
| 43 | 43 | </view> |
| 44 | 44 | </view> |
| ... | ... | @@ -190,6 +190,26 @@ export default { |
| 190 | 190 | name: 'ReplenishmentOrder' |
| 191 | 191 | }] |
| 192 | 192 | }, |
| 193 | + { | |
| 194 | + title: '试样订单', | |
| 195 | + items: [{ | |
| 196 | + text: '产品试样确认单', | |
| 197 | + icon: '/static/images/index/invoice.png', | |
| 198 | + link: '/pages/invoice/index', | |
| 199 | + name: 'ConfirmationForm' | |
| 200 | + },{ | |
| 201 | + text: '产品试样结果反馈单', | |
| 202 | + icon: '/static/images/index/delay_invoice.png', | |
| 203 | + link: '/pages/delay_invoice/index', | |
| 204 | + name: 'FeedbackForm' | |
| 205 | + },{ | |
| 206 | + text: '产品试样结果跟踪单', | |
| 207 | + icon: '/static/images/index/draft_order.png', | |
| 208 | + link: '/pages/draft_order/index', | |
| 209 | + name: 'FollowupForm' | |
| 210 | + }] | |
| 211 | + // | |
| 212 | + }, | |
| 193 | 213 | ], |
| 194 | 214 | menuNames: [] |
| 195 | 215 | } | ... | ... |