|
|
|
@ -280,6 +280,11 @@
|
|
|
|
|
<span>{{ isPopulars[scope.row.isPopular] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="是否自动处理 " prop="autoHandle" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ autoHandles[scope.row.autoHandle] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="发货方" prop="shipper" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ shippers[scope.row.shipper] }}</span>
|
|
|
|
@ -902,6 +907,10 @@ export default {
|
|
|
|
|
2: '原始单据的收货方',
|
|
|
|
|
3: '用户所属仓库',
|
|
|
|
|
},
|
|
|
|
|
autoHandles: {
|
|
|
|
|
'false': '否',
|
|
|
|
|
'true' : '是',
|
|
|
|
|
},
|
|
|
|
|
consignees: {
|
|
|
|
|
1: '原始单据的收货方',
|
|
|
|
|
2: '原始单据的发货方',
|
|
|
|
|