From e2ea62f5a71f20b3168c5307bc8dd1f2aabeb32a Mon Sep 17 00:00:00 2001 From: x_z Date: Sat, 30 Jul 2022 19:51:05 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E5=A4=8Dbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/CorpMaintain.vue | 6 +++--- src/views/thrsys/ThrProductsCheck.vue | 6 +++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/basic/CorpMaintain.vue b/src/views/basic/CorpMaintain.vue index 1e0aef7..d3ca490 100644 --- a/src/views/basic/CorpMaintain.vue +++ b/src/views/basic/CorpMaintain.vue @@ -421,7 +421,6 @@ export default { this.thirdIdColumn = false; getBasicUnitMaintains(this.query) .then((response) => { - console.log(response) this.loading = false; this.erpIdColumn = response.data.BUMErpIdValue == "1" ? true : false; this.thirdIdColumn = response.data.BUMThirdIdValue == "1" ? true : false; @@ -460,7 +459,9 @@ export default { this.formName = "update"; this.spellUpdate = true; this.editQuery = row; - + if (this.editQuery.creditNo === null) { + this.editQuery.creditNo = ""; + } } else { this.editQuery = { @@ -506,7 +507,6 @@ export default { this.editQuery.thirdName4 = null; let data = Object.assign({}, this.editQuery); - console.log('------2------'); basicUnitMaintainSave(data, this.formName) .then(response => { this.formLoading = false; diff --git a/src/views/thrsys/ThrProductsCheck.vue b/src/views/thrsys/ThrProductsCheck.vue index 9702d58..ac8f165 100644 --- a/src/views/thrsys/ThrProductsCheck.vue +++ b/src/views/thrsys/ThrProductsCheck.vue @@ -81,7 +81,7 @@ - 查询 + 查询 @@ -218,6 +218,10 @@ export default { this.checkVisible = true; this.curRow = row; }, + search() { + this.filterQuery.page = 1; + this.getList(); + }, getList() { if (this.filterQuery.thirdSys == null) { this.$message.warning("请先选择第三方系统!")