diff --git a/src/views/report/exceptionProcess/index.vue b/src/views/report/exceptionProcess/index.vue index 2eb63c6..47d1ca4 100644 --- a/src/views/report/exceptionProcess/index.vue +++ b/src/views/report/exceptionProcess/index.vue @@ -123,18 +123,18 @@ - + - - + + - + @@ -165,7 +165,7 @@ v-if="productionManagerVisible && scope.row.productionManagerFlag == null && scope.row.qualityUserFlag != null && scope.row.productionUserFlag === '1'" @click="productionManagerUpdate(scope.row)" - >生产经理评审 + >生产部经理评审 质量经理评审 + >质量部经理评审 @@ -272,7 +272,7 @@ - + @@ -307,7 +307,7 @@ - + - + @@ -359,7 +359,7 @@ - + - + - + - + @@ -29,7 +29,7 @@ - + @@ -85,7 +85,7 @@ 新增--> - - 修改 - - + + + + + + + + + + + + - - - + + + + + + + + - - - - - - @@ -211,26 +210,26 @@ - + - + - - + + + + + + + + - - - - - - - + @@ -243,7 +242,7 @@ - + @@ -270,7 +269,7 @@ import { export default { name: 'SwitchOrder', - dicts: ['is_flag'], + dicts: ['is_switch'], data() { return { // 遮罩层 @@ -302,6 +301,7 @@ export default { objId: null, materialBarcode: null, switchStationCode: null, + switchStationName: null, oldOrderCode: null, isSwitch: null, createBy: null, @@ -314,11 +314,15 @@ export default { // 表单参数 form: {}, // 表单校验 - rules: {}, + rules: { + oldOrderCode: [ + { required: true, message: '新订单编号不能为空', trigger: 'blur' } + ], + }, columns: [ { key: 0, label: `主键标识`, visible: false }, { key: 1, label: `箱体码`, visible: true }, - { key: 2, label: `切换工位编号`, visible: true }, + { key: 2, label: `切换工位`, visible: true }, { key: 3, label: `原订单编号`, visible: false }, { key: 4, label: `切换订单标识`, visible: true }, { key: 5, label: `创建人`, visible: false }, @@ -416,7 +420,7 @@ export default { if (valid) { if (this.form.objId != null) { updateSwitchOrder(this.form).then(response => { - this.$modal.msgSuccess('修改成功') + this.$modal.msgSuccess('修改SAP订单成功,请到打印机旁进行补打条码!') this.open = false this.getList() })