From 21a4e09672b1177d40c2bb5b937a8780c5eaa7fb Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期六, 08 三月 2025 15:03:34 +0800
Subject: [PATCH] 一些更新

---
 src/views/tigerprojects/system/lowcode/entityts/BIZ_U9_ASN_DTL.ts |   30 +++++++++++++++++++++---------
 1 files changed, 21 insertions(+), 9 deletions(-)

diff --git a/src/views/tigerprojects/system/lowcode/entityts/BIZ_U9_ASN_DTL.ts b/src/views/tigerprojects/system/lowcode/entityts/BIZ_U9_ASN_DTL.ts
index 2216bdb..aca384b 100644
--- a/src/views/tigerprojects/system/lowcode/entityts/BIZ_U9_ASN_DTL.ts
+++ b/src/views/tigerprojects/system/lowcode/entityts/BIZ_U9_ASN_DTL.ts
@@ -220,15 +220,27 @@
           ];
       }
     },
-    GetSearchForm: () => {
-      return [
-        {
-          field: 'ORDER_NO',
-          label: t('鍗曟嵁鍙�'),
-          colProps: { span: 8 },
-          component: 'Input',
-        },
-      ];
+    GetSearchForm: (type: string) => {
+      switch (type) {
+        case 'BIZ_U9_ASN_DTL':
+          return [
+            {
+              field: 'ORDER_NO',
+              label: t('鍗曟嵁鍙�'),
+              colProps: { span: 8 },
+              component: 'Input',
+            },
+          ];
+        case 'BIZ_U9_ASN_SN':
+          return [
+            {
+              field: 'ORDER_NO',
+              label: t('鍗曟嵁鍙�'),
+              colProps: { span: 8 },
+              component: 'Input',
+            },
+          ];
+      };
     },
     GetCrudForm: () => {
       return [];

--
Gitblit v1.9.3