|
|
|
@ -114,16 +114,28 @@
|
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-text type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)" |
|
|
|
|
>查看</el-text |
|
|
|
|
> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="handleCallDeliveryOwn(slotProps.scope)" |
|
|
|
|
>修改客户信息</el-text |
|
|
|
|
> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '货位信息'"> |
|
|
|
|
<el-tag |
|
|
|
|
v-for="item in slotProps.scope.row.allocation |
|
|
|
|
? slotProps.scope.row.allocation.split(',') |
|
|
|
|
: []" |
|
|
|
|
:key="item" |
|
|
|
|
>{{ item }}</el-tag |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<el-text type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)" |
|
|
|
|
>查看</el-text |
|
|
|
|
> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="handleCallDeliveryOwn(slotProps.scope)" |
|
|
|
|
>修改客户信息</el-text |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-row> |
|
|
|
@ -507,6 +519,16 @@ export default {
|
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'allocation', |
|
|
|
|
label: '货位信息', |
|
|
|
|
type: 6, |
|
|
|
|
values: '', |
|
|
|
|
width: '220', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'totalNumber', |
|
|
|
|
label: '订单总件数', |
|
|
|
@ -594,16 +616,6 @@ export default {
|
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'allocation', |
|
|
|
|
label: '货位信息', |
|
|
|
|
type: 1, |
|
|
|
|
values: '', |
|
|
|
|
width: '220', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'resource', |
|
|
|
|
label: '订单来源', |
|
|
|
|