From 8a38a64c30cb10132f34b98375db2042707603d6 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Mon, 17 Jun 2024 14:28:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=A1=B5=E9=9D=A2=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E7=AD=89=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../toolsAcceptance/component/codingTools.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sgzb-ui/src/views/warehouseManage/newPurchase/toolsAcceptance/component/codingTools.vue b/sgzb-ui/src/views/warehouseManage/newPurchase/toolsAcceptance/component/codingTools.vue index fe89c91e..973d68da 100644 --- a/sgzb-ui/src/views/warehouseManage/newPurchase/toolsAcceptance/component/codingTools.vue +++ b/sgzb-ui/src/views/warehouseManage/newPurchase/toolsAcceptance/component/codingTools.vue @@ -469,6 +469,10 @@ export default { console.log(row) this.reset() this.form = row + + if (!this.form.fixCode) { + this.form.fixCode = '1' + } this.$set(this.form, 'str', '') this.$set(this.form, 'str1', '') // this.$set(this.form,'fixCode','1') @@ -659,7 +663,10 @@ export default { this.isDetail = true this.title = '编码绑定详情' this.codeList = [] - const res = await getBindCodeDetails({ taskId: row.taskId }) + const res = await getBindCodeDetails({ + taskId: row.taskId, + typeId: row.typeId, + }) console.log('🚀 ~ handleBindDetails ~ res:', res) this.codeList = res.data },