From 6a7257f9d8f659c508cf826726126c0fa4363eef Mon Sep 17 00:00:00 2001 From: YangYuGang <1378265336@qq.com> Date: 星期一, 14 四月 2025 17:04:39 +0800 Subject: [PATCH] 盘点单没有数据时一直加载中 --- src/views/tigerprojects/system/lowcode/setting/setting.data.ts | 60 +++++++++++++++++++++++++++++++++++++++++++++--------------- 1 files changed, 45 insertions(+), 15 deletions(-) diff --git a/src/views/tigerprojects/system/lowcode/setting/setting.data.ts b/src/views/tigerprojects/system/lowcode/setting/setting.data.ts index fb7a9f9..8abbbc5 100644 --- a/src/views/tigerprojects/system/lowcode/setting/setting.data.ts +++ b/src/views/tigerprojects/system/lowcode/setting/setting.data.ts @@ -1,7 +1,7 @@ /* * @Description: file content * @Author: Ben Lin - * @version: + * @version: * @Date: 2024-06-18 15:09:48 * @LastEditors: Ben Lin * @LastEditTime: 2024-07-17 11:12:34 @@ -44,7 +44,31 @@ label: '1', colSlot: 'condAdd', colProps: { - span: 10, + span: 4, + }, + }, + { + field: 'IsSearch', + label: '鏄惁鏌ヨ', + component: 'Select', + defaultValue: 'Y', + colProps: { span: 8 }, + componentProps: ({ schema, tableAction, formActionType, formModel }) => { + return { + options: [ + { + label: '鏄�', + value: 'Y', + }, + { + label: '鍚�', + value: 'N', + }, + ], + onChange: (e) => { + + }, + }; }, }, ]; @@ -86,10 +110,16 @@ */ export const mainSchemas: FormSchema[] = [ { + field: 'CODE_NAME', + label: '浠g爜鍚嶇О', + component: 'Input', + colProps: { span: 12 }, + }, + { field: 'MainAssemblyName', label: '瀹炰綋绫诲悕', component: 'Input', - colProps: { span: 8 }, + colProps: { span: 10 }, }, { field: '00', @@ -101,20 +131,11 @@ }, }, { - field: '0', - component: 'Input', - label: '1', - colSlot: 'mainCondAdd', - colProps: { - span: 2, - }, - }, - { field: 'BY_ORG', label: '鏄惁鎸夌粍缁囨煡璇�', component: 'Select', defaultValue: 'N', - colProps: { span: 4}, + colProps: { span: 7 }, componentProps: { options: [ { @@ -133,7 +154,7 @@ label: '鏄惁鎸夊伐鍘傛煡璇�', component: 'Select', defaultValue: 'N', - colProps: { span: 4}, + colProps: { span: 7 }, componentProps: { options: [ { @@ -152,7 +173,7 @@ label: '鏄惁鎸変粨搴撴煡璇�', component: 'Select', defaultValue: 'N', - colProps: { span: 4}, + colProps: { span: 7 }, componentProps: { options: [ { @@ -166,4 +187,13 @@ ], }, }, + { + field: '0', + component: 'Input', + label: '1', + colSlot: 'mainCondAdd', + colProps: { + span: 3, + }, + }, ]; -- Gitblit v1.9.3