123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- export const orderOpButtons = [
- {
- label: '删除订单',
- key: 'delete',
- color: '#FFC117'
- },
- {
- label: '取消订单',
- key: 'cancel',
- color: '#ccc'
- },
- {
- label: '去支付',
- key: 'pay',
- color: '#FFC117'
- },
- {
- label: '确认收货',
- key: 'confirm',
- color: '#FFC117'
- },
- // {
- // label: '申请退款',
- // key: 'refund',
- // color: '#FFC117'
- // },
- // {
- // label: '再次购买',
- // key: 'rebuy',
- // color: '#FFC117'
- // },
- {
- label: '去评论',
- key: 'comment',
- color: '#FFC117'
- }
- ]
- export const shoppingSubNavs = [
- {
- label: '全部',
- value: 0
- },
- {
- label: '待付款',
- value: 1
- },
- {
- label: '待发货',
- value: 2
- },
- {
- label: '待核销',
- value: 8
- },
- {
- label: '待收货',
- value: 3
- },
- {
- label: '待评价',
- value: 4
- },
- {
- label: '待成团',
- value: 6
- },
- {
- label: '待售后',
- value: 7
- },
- {
- label: '已关闭',
- value: 5
- }
- ]
- export const businessSubNavs = [
- {
- label: '全部',
- value: 0
- },
- {
- label: '已取消',
- value: 5
- },
- {
- label: '待成团',
- value: 6
- },
- {
- label: '未付款',
- value: 8
- },
- {
- label: '已付款',
- value: 9
- },
- {
- label: '已核销',
- value: 10
- }
- ]
|