From 0a77fd20146f0bd1793fcc90516ecd4dd5c29919 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 28 Aug 2026 16:58:14 +0800 Subject: [PATCH] =?UTF-8?q?fix(vehicle):=20=E4=BF=AE=E5=A4=8D=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E6=80=A7=E8=B4=A8=E7=AD=9B=E9=80=89=E6=9D=A1=E4=BB=B6?= =?UTF-8?q?=E6=B8=85=E7=A9=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将客户性质筛选条件的默认选项由固定值更改为空数组 - 修正筛选下拉列表的加载行为,避免显示错误选项 - 确保字典数据正确刷新,提升筛选准确性 --- src/views/vehicle/customer-archive.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/vehicle/customer-archive.vue b/src/views/vehicle/customer-archive.vue index e04956a..3e6ef0b 100644 --- a/src/views/vehicle/customer-archive.vue +++ b/src/views/vehicle/customer-archive.vue @@ -2548,7 +2548,7 @@ export default { this.loadDictOptions( 'nature_of_client', 'customerNatureOptions', - ['有限公司', '个体工商户'], + [], options => { const customerNatureColumn = this.findColumn(this.option.column, 'customerNature'); customerNatureColumn.dicData = [{ label: '全部', value: '' }, ...options];