From 91c82965b2d987452ca276e3a03b48c8dcda2ae9 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期三, 19 八月 2026 11:47:26 +0800
Subject: [PATCH] config(env): 更新生产环境配置和公司名称

---
 src/views/crm/product/components/data.ts |   26 ++++++++++++++++++--------
 1 files changed, 18 insertions(+), 8 deletions(-)

diff --git a/src/views/crm/product/components/data.ts b/src/views/crm/product/components/data.ts
index 75d25ba..462508a 100644
--- a/src/views/crm/product/components/data.ts
+++ b/src/views/crm/product/components/data.ts
@@ -14,7 +14,7 @@
       title: '鐗╂枡缂栫爜',
     },
     {
-      field: 'itemBarCode',
+      field: 'barCode',
       title: '鐗╂枡鏉$爜',
     },
     {
@@ -52,7 +52,22 @@
 }
 
 /** 浜у搧缂栬緫琛ㄦ牸鐨勫垪瀹氫箟 */
-export function useProductEditTableColumns(): VxeTableGridOptions['columns'] {
+export function useProductEditTableColumns(
+  showBusinessPrice: boolean = false,
+): VxeTableGridOptions['columns'] {
+  const priceColumn = showBusinessPrice
+    ? {
+        field: 'businessPrice',
+        title: '鍟嗘満浠锋牸锛堝厓锛�',
+        minWidth: 100,
+        slots: { default: 'businessPrice' },
+      }
+    : {
+        field: 'contractPrice',
+        title: '鍚堝悓浠凤紙鍏冿級',
+        minWidth: 100,
+        slots: { default: 'contractPrice' },
+      };
   return [
     { type: 'seq', title: '搴忓彿', minWidth: 50 },
     {
@@ -87,12 +102,7 @@
       minWidth: 100,
       formatter: 'formatAmount2',
     },
-    {
-      field: 'contractPrice',
-      title: '鍚堝悓浠凤紙鍏冿級',
-      minWidth: 100,
-      slots: { default: 'contractPrice' },
-    },
+    priceColumn,
     {
       field: 'count',
       title: '鏁伴噺',

--
Gitblit v1.9.3