From 0c81362850314afd2a6cb5f5d6b332d7ad33058b Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期二, 22 十月 2024 23:29:47 +0800 Subject: [PATCH] 模板生成预览 --- 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