diff --git a/klp-ui/src/components/KLPService/SchemeSelect/index.vue b/klp-ui/src/components/KLPService/SchemeSelect/index.vue index 40d01fef..57cf7838 100644 --- a/klp-ui/src/components/KLPService/SchemeSelect/index.vue +++ b/klp-ui/src/components/KLPService/SchemeSelect/index.vue @@ -64,6 +64,14 @@ + + + + + + + +
选择钢卷 @@ -207,6 +215,7 @@ export default { }, handleSchemeClick(row) { this.selectedTemplate = row; + this.form.belongCompany = row.templateUnit || undefined; this.loadCheckItems(row); }, loadCheckItems(template) { @@ -236,6 +245,8 @@ export default { this.$emit("confirm", { template: this.selectedTemplate, taskCode: this.form.taskCode, + taskType: this.form.taskType, + belongCompany: this.form.belongCompany || undefined, coilIds: coilIds || undefined }); this.dialogVisible = false; diff --git a/klp-ui/src/views/crm/components/CoilTable.vue b/klp-ui/src/views/crm/components/CoilTable.vue index ab16a430..37e1fefa 100644 --- a/klp-ui/src/views/crm/components/CoilTable.vue +++ b/klp-ui/src/views/crm/components/CoilTable.vue @@ -48,6 +48,8 @@ 打印标签 + 数字钢卷 追溯 @@ -168,6 +170,12 @@ export default { this.$refs.labelRender.printLabel(); }) }, + /** 数字钢卷按钮操作 */ + handleDigitalCoilNo(row) { + this.$router.push({ + path: '/wms/coil/' + row.coilId, + }); + }, /** 追溯按钮操作 */ handleTrace(row) { this.trace.open = true; diff --git a/klp-ui/src/views/mes/qc/inspection/task.vue b/klp-ui/src/views/mes/qc/inspection/task.vue index 9aa17286..d729f741 100644 --- a/klp-ui/src/views/mes/qc/inspection/task.vue +++ b/klp-ui/src/views/mes/qc/inspection/task.vue @@ -1,37 +1,43 @@