From 539333922cc1a1b2b5de75a3a5a4dcac90b3b064 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期二, 30 一月 2024 11:31:12 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- Source/UBCS-WEB/src/views/ruleBasic/usableCharacter.vue | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/UBCS-WEB/src/views/ruleBasic/usableCharacter.vue b/Source/UBCS-WEB/src/views/ruleBasic/usableCharacter.vue index d91ed31..d246424 100644 --- a/Source/UBCS-WEB/src/views/ruleBasic/usableCharacter.vue +++ b/Source/UBCS-WEB/src/views/ruleBasic/usableCharacter.vue @@ -3,7 +3,7 @@ <el-header> <div style="margin-bottom: 15px"> 缂栫爜瑙勫垯锛� - <el-select v-model="select" :filter-method="filterValue" filterable placeholder="璇烽�夋嫨" size="small" + <el-select v-model="select" :filter-method="filterValue" filterable placeholder="璇烽�夋嫨" size="small" v-loading="selectLoading" @change="selectHandler"> <el-option v-for="(item,index) in queryReleasedList" :key="item.oid" @@ -86,7 +86,8 @@ tableData: [], select: "", selectValue: "", - editVisble: false + editVisble: false, + selectLoading:false, } }, watch: { @@ -143,6 +144,7 @@ const res2 = await getList({codeRuleId: this.select, chartType: "charset", chartValue: this.characterValue}); this.tableData = res2.data.data; this.loading = false; + this.selectLoading = false; } catch (error) { this.$message.warning(error) } -- Gitblit v1.9.3