From 857d565f333ec4397c072dd9c447d660f5e3bb6c Mon Sep 17 00:00:00 2001 From: luo Date: Mon, 17 Aug 2026 17:29:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=88=91=E7=9A=84=E4=BD=A3=E9=87=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../widget/art-search-select/index.vue | 4 +- .../my-commission/index.vue | 44 ++++++++++++++++++- 2 files changed, 44 insertions(+), 4 deletions(-) diff --git a/src/components/core/forms/art-search-bar/widget/art-search-select/index.vue b/src/components/core/forms/art-search-bar/widget/art-search-select/index.vue index d1e501b..523ac36 100644 --- a/src/components/core/forms/art-search-bar/widget/art-search-select/index.vue +++ b/src/components/core/forms/art-search-bar/widget/art-search-select/index.vue @@ -39,10 +39,10 @@ }) // 合并默认配置和自定义配置 - const config = reactive({ + const config = computed(() => ({ placeholder: `${t('table.searchBar.searchSelectPlaceholder')}${prop.item.label}`, ...(prop.item.config || {}) - }) + })) // 选择框值变化处理函数 const changeValue = (val: unknown): void => { diff --git a/src/views/commission-management/my-commission/index.vue b/src/views/commission-management/my-commission/index.vue index c37d6f4..d1b4f8b 100644 --- a/src/views/commission-management/my-commission/index.vue +++ b/src/views/commission-management/my-commission/index.vue @@ -239,7 +239,7 @@