diff --git a/src/views/basic/workplace/workplaceQueue.vue b/src/views/basic/workplace/workplaceQueue.vue index eace211d..84e001e2 100644 --- a/src/views/basic/workplace/workplaceQueue.vue +++ b/src/views/basic/workplace/workplaceQueue.vue @@ -102,7 +102,7 @@
高级搜索 - 维护绑定关系 --> - + @@ -148,7 +148,7 @@ 绑定产品 @@ -168,7 +168,7 @@ {{product.nameCode}} {{product.cpmctymc}} - {{product.ggxh}} + {{ product.bzgg }} + {{ product.ggxh }} - -
- 提交 +
+ + 取消 + 提交 +
@@ -266,16 +269,7 @@ export default { name: "workplaceQueue", data() { return { - //页面配置 - executeFuc(row, type, clickFuc, value) { - return executeFuc(this, row, type, clickFuc, value); - }, - executeEval(row, expression, defaultRet) { - if (expression) { - return eval(expression); - } - return defaultRet; - }, + tableObj: [], queryList: [], tableHeader: [], @@ -317,6 +311,11 @@ export default { dialogTableVisible: false, radio: 1, addBindVisible: false, + titleName: "1", + titleMap:{ + "1" : '维护绑定关系', + "2" : '绑定产品' + }, formLoading: false, dialogVisible: false, formData: formJson, @@ -383,11 +382,22 @@ export default { 1: "在库", 2: "已使用", 3: "已退回", - } + }, + bindType : 2,//2:绑定产品其他就是维护绑定 }; }, components: {}, methods: { + //页面配置 + executeFuc(row, type, clickFuc, value) { + return executeFuc(this, row, type, clickFuc, value); + }, + executeEval(row, expression, defaultRet) { + if (expression) { + return eval(expression); + } + return defaultRet; + }, onReset() { this.$router.push({ path: "", @@ -493,6 +503,13 @@ export default { }); }, submitAddBindData(){ + if (this.addBindData.id == null || this.addBindData.code == null){ + return this.$message.error("请添加槽位") + } + if (this.addBindData.udiCode == null ){ + return this.$message.error("请添加产品!") + } + this.addBindData.relId = this.product.relId bind(this.addBindData).then( (response) => { if (response.code === 20000) { @@ -503,14 +520,24 @@ export default { udiCode: null, udiCodeFlag: false } - this.sysWorkplaceQueue = {}, - this.product = {}, - this.$nextTick(() => { - this.$refs.inputRef1.focus(); // 设置焦点到第一个输入框 - }); + this.sysWorkplaceQueue = {} + this.product = {} + if (this.bindType == 2){ + this.closeAddBindData() + }else { + this.$nextTick(() => { + this.$refs.inputRef1.focus(); // 设置焦点到第一个输入框 + }); + } } else { this.$message.error(response.message) - this.$refs.inputRef1.select(); + if (this.bindType == 2){ + this.closeAddBindData() + }else { + this.$nextTick(() => { + this.$refs.inputRef1.focus(); // 设置焦点到第一个输入框 + }); + } } }).catch((error) => { this.$message.error(error.message) @@ -518,6 +545,10 @@ export default { }); }, + closeAddBindData(){ + this.addBindVisible = false + this.getCodeDetailList(); + }, enterKey() { this.getOrderDetails() }, @@ -633,17 +664,41 @@ export default { this.codeQuery.page = 1; this.getCodeDetailList(); }, - addBind() { - this.addBindData = { - code: null, + addBind(val,row) { + if (val == 1){ + this.addBindData = { + code: null, codeFlag: false, udiCode: null, udiCodeFlag: false + } + this.bindType = 1 + this.sysWorkplaceQueue = {} + this.product = {} + this.addBindVisible = true + this.$nextTick(() => { + this.$refs.inputRef1.focus(); // 设置焦点到第一个输入框 + }); + }else { + this.addBindData = { + code: null, + codeFlag: true, + udiCode: null, + udiCodeFlag: true + } + this.bindType = 2 + this.titleName = "2" + this.sysWorkplaceQueue.code = row.code + this.sysWorkplaceQueue.remark = row.remark + this.addBindData.code = row.code + this.addBindData.id = row.id + this.product = {} + this.addBindVisible = true + this.$nextTick(() => { + this.$refs.inputRef2.focus(); + }); + } - this.addBindVisible = true - this.$nextTick(() => { - this.$refs.inputRef1.focus(); // 设置焦点到第一个输入框 - }); }, getCodeDetailList() { this.codeDetailLoading = true; @@ -742,5 +797,12 @@ export default { .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner { box-shadow: none !important; } - +.center-button { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + margin-bottom: 10px; + margin-top: 18px; +}