From 96795a58eb5bb4941b4b02ab27b68dfdcbb6d82b Mon Sep 17 00:00:00 2001 From: ludc Date: 星期二, 31 十月 2023 11:31:01 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue index 0658b01..f98ce0f 100644 --- a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue +++ b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue @@ -11,7 +11,7 @@ v-if="!['PREVIEW', 'DELETEFILE', 'revisefile', 'DOWNLOADFILE', 'UPLOADFILE'].includes(item.uniqueFlag)" :key="index" plain size="small" type="primary" - @click="handelBtnClick(item)">{{ + @click="handleBtnClick(item)">{{ item.name }} </el-button> @@ -470,10 +470,10 @@ openVis(visible) { this[visible] = true }, - handelBtnClick(event) { + handleBtnClick(event) { const {uniqueFlag} = event this.$nextTick(() => { - if (uniqueFlag === 'CODEADD') return this.addvisible = true + if (uniqueFlag === 'CODEADD') return this.addSaveHandler() if (uniqueFlag === 'CODEEDIT') return this.editHandler() if (uniqueFlag === 'CODEBATCHADD') return this.openBatchImport('batchImportApply') if (uniqueFlag === 'CODEIMPORTHISTORY') return this.openBatchImport('historyImport') @@ -500,6 +500,12 @@ // if(uniqueFlag === 'CODEEDIT') return this.similarHandler() }); }, + addSaveHandler(){ + + this.$nextTick(() => { + this.addvisible = true; + }); + }, //鐢宠闆嗗洟鐮佹暟鎹� applyGroupCode() { if (this.selectRow.length <= 0) { -- Gitblit v1.9.3