From 56d8be01be42821d8e03484350d36398506d4f47 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Fri, 25 Oct 2024 14:33:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A4=9A=E7=A0=81=E8=9E=8D=E5=90=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/productEdit.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/views/basic/product/productEdit.vue b/src/views/basic/product/productEdit.vue index efdc1abc..4503e733 100644 --- a/src/views/basic/product/productEdit.vue +++ b/src/views/basic/product/productEdit.vue @@ -1749,11 +1749,12 @@ export default { //如果都为空 进行补充 if (!this.$isNotBlank(this.editQuery.sptm) && !this.$isNotBlank(this.editQuery.ybbm)) { - getCodeRelDetail({drugcode:row.nameCode}).then((response) => { + getCodeRelDetail({drugCode:row.nameCode}).then((response) => { if (response.code == 20000) { - if (this.response.data != null && this.response.data.length > 0) { - this.editQuery.sptm = this.response.data[0].sptm; - this.editQuery.ybbm = this.response.data[0].ybbm; + if (response.data != null && response.data.length > 0) { + this.editQuery.sptm = response.data[0].sptm; + this.editQuery.ybbm = response.data[0].ybbm; + this.getYbHcData() } } }).catch(() => {