parent
ef55eb3056
commit
39b24b34ce
@ -0,0 +1,65 @@
|
||||
export default [
|
||||
{
|
||||
title: '#',
|
||||
dataIndex: '',
|
||||
key:'rowIndex',
|
||||
width:60,
|
||||
align:"center",
|
||||
customRender:function (t,r,index) {
|
||||
return parseInt(index)+1;
|
||||
}
|
||||
},
|
||||
{
|
||||
title:'用户id',
|
||||
align:"center",
|
||||
dataIndex: 'userId'
|
||||
},
|
||||
{
|
||||
title:'省',
|
||||
align:"center",
|
||||
dataIndex: 'province'
|
||||
},
|
||||
{
|
||||
title:'市',
|
||||
align:"center",
|
||||
dataIndex: 'city'
|
||||
},
|
||||
{
|
||||
title:'地区',
|
||||
align:"center",
|
||||
dataIndex: 'county'
|
||||
},
|
||||
{
|
||||
title:'地址',
|
||||
align:"center",
|
||||
dataIndex: 'detail'
|
||||
},
|
||||
{
|
||||
title:'接收人',
|
||||
align:"center",
|
||||
dataIndex: 'recipient'
|
||||
},
|
||||
{
|
||||
title:'手机',
|
||||
align:"center",
|
||||
dataIndex: 'telephone'
|
||||
},
|
||||
{
|
||||
title:'默认地址',
|
||||
align:"center",
|
||||
dataIndex: 'isDefault_dictText'
|
||||
},
|
||||
{
|
||||
title:'备注',
|
||||
align:"center",
|
||||
dataIndex: 'remark'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
dataIndex: 'action',
|
||||
align:"center",
|
||||
fixed:"right",
|
||||
width:147,
|
||||
scopedSlots: { customRender: 'action' }
|
||||
}
|
||||
]
|
@ -0,0 +1,55 @@
|
||||
export default [
|
||||
{
|
||||
title: '#',
|
||||
dataIndex: '',
|
||||
key:'rowIndex',
|
||||
width:60,
|
||||
align:"center",
|
||||
customRender:function (t,r,index) {
|
||||
return parseInt(index)+1;
|
||||
}
|
||||
},
|
||||
{
|
||||
title:'价格',
|
||||
align:"center",
|
||||
dataIndex: 'price'
|
||||
},
|
||||
{
|
||||
title:'产品名称',
|
||||
align:"center",
|
||||
dataIndex: 'goodsName'
|
||||
},
|
||||
{
|
||||
title:'分类',
|
||||
align:"center",
|
||||
dataIndex: 'category'
|
||||
},
|
||||
{
|
||||
title:'规格',
|
||||
align:"center",
|
||||
dataIndex: 'specs'
|
||||
},
|
||||
{
|
||||
title:'厂商',
|
||||
align:"center",
|
||||
dataIndex: 'factory'
|
||||
},
|
||||
{
|
||||
title:'是否销售',
|
||||
align:"center",
|
||||
dataIndex: 'ifSale_dictText'
|
||||
},
|
||||
{
|
||||
title:'备注',
|
||||
align:"center",
|
||||
dataIndex: 'remark'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
dataIndex: 'action',
|
||||
align:"center",
|
||||
fixed:"right",
|
||||
width:147,
|
||||
scopedSlots: { customRender: 'action' }
|
||||
}
|
||||
]
|
@ -0,0 +1,92 @@
|
||||
export default [
|
||||
{
|
||||
title: '#',
|
||||
dataIndex: '',
|
||||
key:'rowIndex',
|
||||
width:60,
|
||||
align:"center",
|
||||
customRender:function (t,r,index) {
|
||||
return parseInt(index)+1;
|
||||
}
|
||||
},
|
||||
{
|
||||
title:'收件人',
|
||||
align:"center",
|
||||
dataIndex: 'recipient'
|
||||
},
|
||||
{
|
||||
title:'手机',
|
||||
align:"center",
|
||||
dataIndex: 'mobile'
|
||||
},
|
||||
{
|
||||
title:'总金额',
|
||||
align:"center",
|
||||
dataIndex: 'totalAmount'
|
||||
},
|
||||
{
|
||||
title:'用户id',
|
||||
align:"center",
|
||||
dataIndex: 'userId'
|
||||
},
|
||||
{
|
||||
title:'订单状态',
|
||||
align:"center",
|
||||
dataIndex: 'state',
|
||||
scopedSlots: { customRender: 'state' }
|
||||
},
|
||||
{
|
||||
title:'下单地址',
|
||||
align:"center",
|
||||
dataIndex: 'addr'
|
||||
},
|
||||
{
|
||||
title:'审核人',
|
||||
align:"center",
|
||||
dataIndex: 'financeReview'
|
||||
},
|
||||
{
|
||||
title:'审核时间',
|
||||
align:"center",
|
||||
dataIndex: 'financeTime'
|
||||
},
|
||||
{
|
||||
title:'审核意见',
|
||||
align:"center",
|
||||
dataIndex: 'financeRemark'
|
||||
},
|
||||
{
|
||||
title:'派单人',
|
||||
align:"center",
|
||||
dataIndex: 'dispacher'
|
||||
},
|
||||
{
|
||||
title:'派发时间',
|
||||
align:"center",
|
||||
dataIndex: 'dispacherTime'
|
||||
},
|
||||
{
|
||||
title:'物流单号',
|
||||
align:"center",
|
||||
dataIndex: 'logisticsId'
|
||||
},
|
||||
{
|
||||
title:'派发意见',
|
||||
align:"center",
|
||||
dataIndex: 'dispacherRemark'
|
||||
},
|
||||
|
||||
{
|
||||
title:'订单备注',
|
||||
align:"center",
|
||||
dataIndex: 'remark'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
dataIndex: 'action',
|
||||
align:"center",
|
||||
fixed:"right",
|
||||
width:147,
|
||||
scopedSlots: { customRender: 'action' },
|
||||
}
|
||||
]
|
Loading…
Reference in new issue