From 86bfba7b1f8b2e77985a7ad69b224e09cad5a0d1 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期一, 17 八月 2026 11:26:23 +0800
Subject: [PATCH] 删除生产主计划传参错误
---
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