diff --git a/src/views/collect/DealOrder.vue b/src/views/collect/DealOrder.vue
index f2a7d530..1a15cd8a 100644
--- a/src/views/collect/DealOrder.vue
+++ b/src/views/collect/DealOrder.vue
@@ -23,12 +23,12 @@
@click.native="overdeleteCode"
>结束剔除
- 下一单
-
+
+
+
+
+
+
@@ -71,6 +71,20 @@
width="120"
show-overflow-tooltip
>
+
+
+
+
+ {{ fifoSplitMap[scope.row.fifoSplit] }}
+
+
+
+
@@ -204,7 +218,13 @@ export default {
selectType: 1,
relId: ''
},
- codeTotal:0
+ codeTotal:0,
+ fifoSplitMap:{
+ 1 : "自动拆零",
+ 2 : "自动整取",
+ 3 : "手动整取",
+ 4 : "手动拆零"
+ }
}
},
methods: {
@@ -354,11 +374,17 @@ export default {
tQuery.action = this.orderFormData.action
this.closeCodeDialog()
+ },
+ getFifoSplitType(fifoSplit){
+ if (fifoSplit == 1 || fifoSplit == 4){
+ return ""
+ }
+ if (fifoSplit == 2 || fifoSplit == 3){
+ return "success"
+ }
}
-
},
created() {
- console.log('hahhahahah', this.prescribeData)
if (this.prescribeData.id != null) {
this.getCodeList()
}