...
|
...
|
@@ -65,3 +65,45 @@ export const buyerOrderStatusList = [ |
|
|
text: '待收货',
|
|
|
},
|
|
|
];
|
|
|
|
|
|
// 订单操作
|
|
|
// ts IOrderAction[]
|
|
|
export const orderActions = [
|
|
|
{
|
|
|
code: 'del_order',
|
|
|
name: 'DEL_ORDER',
|
|
|
text: '删除',
|
|
|
},
|
|
|
{ code: 'buy_again', name: 'BUY_AGAIN', text: '再次购买' },
|
|
|
{
|
|
|
code: 'show_detail',
|
|
|
name: 'SHOW_DETAIL',
|
|
|
text: '查看详情',
|
|
|
},
|
|
|
{
|
|
|
code: 'show_express',
|
|
|
name: 'SHOW_EXPRESS',
|
|
|
text: '查看物流',
|
|
|
},
|
|
|
{
|
|
|
code: 'confirm_delivery',
|
|
|
name: 'CONFIRM_DELIVERY',
|
|
|
text: '确认收货',
|
|
|
},
|
|
|
{
|
|
|
code: 'sold_again',
|
|
|
name: 'SOLD_AGAIN',
|
|
|
text: '再次出售',
|
|
|
},
|
|
|
{
|
|
|
code: 'not_sold',
|
|
|
confirmTips: '您确定不卖此商品吗?',
|
|
|
name: 'NOT_SOLD',
|
|
|
text: '不卖了',
|
|
|
},
|
|
|
{
|
|
|
code: 'pay_earnestMoney',
|
|
|
name: 'PAY_EARNESTMONEY',
|
|
|
text: '支付保证金',
|
|
|
},
|
|
|
]; |
...
|
...
|
|