From 8a70b649a26a0989703e972d334f58a29d5aaa70 Mon Sep 17 00:00:00 2001 From: zhuangdashia Date: Tue, 26 Aug 2025 00:20:26 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/business/category/index.vue | 9 +++- .../modules/subcategory-operate-drawer.vue | 7 ++- .../src/views/mps/detail-entry/index.vue | 49 ++++++++++++------- .../modules/detail-entry-search.vue | 40 +++++++++++++-- .../src/views/original/hnt-sgmx/index.vue | 1 + .../src/views/original/traffic/index.vue | 1 + .../src/views/original/water/index.vue | 1 + 7 files changed, 83 insertions(+), 25 deletions(-) diff --git a/cds-fontend-2025.V1/src/views/business/category/index.vue b/cds-fontend-2025.V1/src/views/business/category/index.vue index 3d53866..5272572 100644 --- a/cds-fontend-2025.V1/src/views/business/category/index.vue +++ b/cds-fontend-2025.V1/src/views/business/category/index.vue @@ -131,9 +131,16 @@ const { resizable: true, render: (row) => { if (!row.pricingRule) return ''; + const suffixMap = { + 'gjjjnzh': ' * 交易金额', + 'xzzhsdshlcltsdj': ' 元/条', + 'default': ' 元/条' + }; + + const suffix = suffixMap[row.typeId] || suffixMap.default; return ( - {row.pricingRule} + {`${row.pricingRule}${suffix}`} ); } diff --git a/cds-fontend-2025.V1/src/views/business/category/modules/subcategory-operate-drawer.vue b/cds-fontend-2025.V1/src/views/business/category/modules/subcategory-operate-drawer.vue index 6d9ac8f..f84a724 100644 --- a/cds-fontend-2025.V1/src/views/business/category/modules/subcategory-operate-drawer.vue +++ b/cds-fontend-2025.V1/src/views/business/category/modules/subcategory-operate-drawer.vue @@ -141,9 +141,12 @@ watch(visible, () => { + > + +