From 436b52186129e60ba72c20e43d2845bc3f899901 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期四, 22 八月 2024 11:16:56 +0800 Subject: [PATCH] 取消暂停svg更新 --- src/views/tigerprojects/system/lowcode/setting/setting.data.ts | 79 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 78 insertions(+), 1 deletions(-) diff --git a/src/views/tigerprojects/system/lowcode/setting/setting.data.ts b/src/views/tigerprojects/system/lowcode/setting/setting.data.ts index 86734e0..fb7a9f9 100644 --- a/src/views/tigerprojects/system/lowcode/setting/setting.data.ts +++ b/src/views/tigerprojects/system/lowcode/setting/setting.data.ts @@ -1,3 +1,11 @@ +/* + * @Description: file content + * @Author: Ben Lin + * @version: + * @Date: 2024-06-18 15:09:48 + * @LastEditors: Ben Lin + * @LastEditTime: 2024-07-17 11:12:34 + */ import { BasicColumn, FormSchema } from '/@/components/Table'; //鍒楄〃鏄剧ず @@ -10,6 +18,10 @@ }, ]; +/** + * @description: 鏌ヨ瀛楁缁撴瀯 + * @return {*} + */ export const newFormSchema: FormSchema[] = [ { field: 'ASSEMBLY_NAME', @@ -37,6 +49,10 @@ }, ]; +/** + * @description: 澧炲垹鏀瑰瓧娈电粨鏋� + * @return {*} + */ export const crudSchemas: FormSchema[] = [ { field: 'crudAssemblyName', @@ -64,6 +80,10 @@ }, ]; +/** + * @description: 琛ㄦ牸瀛楁缁撴瀯 + * @return {*} + */ export const mainSchemas: FormSchema[] = [ { field: 'MainAssemblyName', @@ -86,7 +106,64 @@ label: '1', colSlot: 'mainCondAdd', colProps: { - span: 10, + span: 2, + }, + }, + { + field: 'BY_ORG', + label: '鏄惁鎸夌粍缁囨煡璇�', + component: 'Select', + defaultValue: 'N', + colProps: { span: 4}, + componentProps: { + options: [ + { + label: '鏄�', + value: 'Y', + }, + { + label: '鍚�', + value: 'N', + }, + ], + }, + }, + { + field: 'BY_PROD', + label: '鏄惁鎸夊伐鍘傛煡璇�', + component: 'Select', + defaultValue: 'N', + colProps: { span: 4}, + componentProps: { + options: [ + { + label: '鏄�', + value: 'Y', + }, + { + label: '鍚�', + value: 'N', + }, + ], + }, + }, + { + field: 'BY_WH', + label: '鏄惁鎸変粨搴撴煡璇�', + component: 'Select', + defaultValue: 'N', + colProps: { span: 4}, + componentProps: { + options: [ + { + label: '鏄�', + value: 'Y', + }, + { + label: '鍚�', + value: 'N', + }, + ], }, }, ]; -- Gitblit v1.9.3