From 53e9b23a40186efd149fd5c5350b5eced1f69920 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期二, 25 八月 2026 17:54:26 +0800
Subject: [PATCH] feat(auth): 更新认证页面为农业数字化平台主题

---
 src/views/wls/materialstock/data.ts |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/src/views/wls/materialstock/data.ts b/src/views/wls/materialstock/data.ts
index 3efe144..1edf653 100644
--- a/src/views/wls/materialstock/data.ts
+++ b/src/views/wls/materialstock/data.ts
@@ -62,6 +62,20 @@
       },
     },
     {
+      fieldName: 'stockState',
+      label: '搴撳瓨鐘舵��',
+      component: 'Select',
+      componentProps: {
+        allowClear: true,
+        options: [
+          { label: '鏆傚瓨搴擄紙寰呰川妫�锛�', value: 10 },
+          { label: '鍚堟牸搴擄紙姝e紡搴撳瓨锛�', value: 20 },
+          { label: '宸插嚭搴擄紙閿�鍞墸鍑忥級', value: 30 },
+        ],
+        placeholder: '璇烽�夋嫨搴撳瓨鐘舵��',
+      },
+    },
+    {
       fieldName: 'frozen',
       label: '鏄惁鍐荤粨',
       component: 'Select',
@@ -83,6 +97,7 @@
     newFrozen: boolean,
     row: MesWmMaterialStockApi.MaterialStock,
   ) => Promise<boolean | undefined>,
+  onMove?: (row: MesWmMaterialStockApi.MaterialStock) => void,
 ): VxeTableGridOptions<MesWmMaterialStockApi.MaterialStock>['columns'] {
   const { hasAccessByCodes } = useAccess();
   return [
@@ -100,6 +115,21 @@
       field: 'specification',
       title: '瑙勬牸鍨嬪彿',
       minWidth: 120,
+    },
+    {
+      field: 'stockState',
+      title: '搴撳瓨鐘舵��',
+      width: 150,
+      cellRender: {
+        name: 'CellTag',
+        props: {
+          options: [
+            { label: '鏆傚瓨搴�', value: 10, color: 'orange' },
+            { label: '鍚堟牸搴�', value: 20, color: 'green' },
+            { label: '宸插嚭搴�', value: 30, color: 'default' },
+          ],
+        },
+      },
     },
     {
       field: 'quantity',
@@ -189,6 +219,16 @@
         },
       },
     },
+    ...(onMove
+      ? [
+          {
+            title: '鎿嶄綔',
+            width: 80,
+            fixed: 'right' as const,
+            slots: { default: 'actions' } as const,
+          },
+        ]
+      : []),
   ];
 }
 

--
Gitblit v1.9.3