|
@@ -204,7 +204,12 @@ export default {
|
|
|
changeOrderGetOrderProduct({
|
|
|
id: this.id
|
|
|
}).then(res => {
|
|
|
- this.completeDetailData = res.data
|
|
|
+ this.completeDetailData = res.data.map(item => {
|
|
|
+ return {
|
|
|
+ ...item,
|
|
|
+ status: ({ WAIT: "待采集", WAIT_SAVE: "待完善", WAIT_OK: "临时采集", OK: "已采集" })[item.status]
|
|
|
+ }
|
|
|
+ })
|
|
|
})
|
|
|
}
|
|
|
},
|
|
@@ -239,7 +244,7 @@ export default {
|
|
|
box-sizing: border-box;
|
|
|
padding-left: 16px;
|
|
|
|
|
|
- ::v-deep & > .zj-page-fill-scroll {
|
|
|
+ ::v-deep &>.zj-page-fill-scroll {
|
|
|
box-sizing: border-box;
|
|
|
padding-right: 16px;
|
|
|
|