From 570d996a5c93732f34457eb375afd3fb57659f1c Mon Sep 17 00:00:00 2001 From: zyn Date: Tue, 5 Dec 2023 18:24:16 +0800 Subject: [PATCH] =?UTF-8?q?feature(=E4=BD=93=E7=B3=BB=E6=90=9C=E7=B4=A2):?= =?UTF-8?q?=20=E6=90=9C=E7=B4=A2=E6=9D=A1=E4=BB=B6=E5=8F=AF=E6=B8=85?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../systemSearch/components/DialogTable.vue | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/pages/regulatoryRepository/systemSearch/components/DialogTable.vue b/src/pages/regulatoryRepository/systemSearch/components/DialogTable.vue index da90376ab..c29dfda43 100644 --- a/src/pages/regulatoryRepository/systemSearch/components/DialogTable.vue +++ b/src/pages/regulatoryRepository/systemSearch/components/DialogTable.vue @@ -3,10 +3,11 @@
- @@ -25,7 +26,7 @@ + placeholder="请选择标准状态" clearable> @@ -78,7 +79,7 @@ + placeholder="请选择数据来源" clearable> @@ -304,6 +305,7 @@ export default { api: { getListStandLimit: "lawss/sarMenuStandardLimit/getListStandLimit", }, + iconShow: false, } }, created() { @@ -425,7 +427,10 @@ export default { this.standSystemData = res.data } }, - choice () { + choice (e) { + if (e.target.className === "el-input__icon el-icon-circle-close el-input__clear") { + return; + } this.modalShowFlag = true }, popoverHideCancel() { @@ -436,6 +441,10 @@ export default { this.searchForm.standSystemId = checkedIds this.modalShowFlag = false }, + handleClearStandSystem (e) { + this.searchForm.standSystem = '' + this.searchForm.standSystemId = '' + }, getDicTypeListCode () { this.$http._getData('sys/dictype/getDicTypeListCode').then(res => { this.dict = { ...res.data }