干燥机配套车间生产管理系统/云平台服务端
bsw215583320
2024-04-16 c2fccb01b972176dc3da5a497b5e904025e9e98d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import {BasicColumn} from '/@/components/Table';
import {FormSchema} from '/@/components/Table';
import { rules} from '/@/utils/helper/validator';
import { render } from '/@/utils/common/renderUtils';
//列表数据
export const columns: BasicColumn[] = [
 <#list columns as po>
   <#if po.fieldName !='id'>
   {
    title: '${po.filedComment}',
    align:"center",
    <#if po.classType=='date'>
    dataIndex: '${po.fieldName}',
    customRender:({text}) =>{
      return !text?"":(text.length>10?text.substr(0,10):text)
    },
   <#else>
    dataIndex: '${po.fieldName}'
   </#if>
   },
   </#if>
 </#list>
];
//查询数据
export const searchFormSchema: FormSchema[] = [
<#list columns as po>
<#if po.fieldName !='id' && po_index<= tableVo.searchFieldNum>
 {
    label: '${po.filedComment}',
    field: '${po.fieldName}',
     <#if po.fieldType =='date'>
    component: 'DatePicker'
     <#elseif po.fieldType =='datetime'>
    component: 'TimePicker'
     <#elseif "int,decimal,double,"?contains(po.fieldType)>
    component: 'InputNumber'
     <#else>
    component: 'Input'
    </#if>
  },
</#if>
</#list>
];
 
export const formSchema: FormSchema[] = [
  // TODO 主键隐藏字段,目前写死为ID
  {label: '', field: 'id', component: 'Input', show: false},
<#list columns as po><#rt/>
  {
    label: '${po.filedComment}',
    field: '${po.fieldName}',
     <#if po.fieldType =='date'>
    component: 'DatePicker'
     <#elseif po.fieldType =='datetime'>
    component: 'DatePicker',
    componentProps: {
      showTime: true,
      valueFormat: 'YYYY-MM-DD hh:mm:ss',
    },
     <#elseif "int,decimal,double,"?contains(po.fieldType)>
    component: 'InputNumber',
     <#else>
    component: 'Input',
    </#if>
    <#if po.fieldName =='id'><#rt/>
    show:false,
    </#if>
  },
</#list>
];
 
//子表表格配置
<#list subTables as sub>
//列表数据
export const ${sub.entityName?uncap_first}Columns: BasicColumn[] = [
 <#list sub.colums as po><#rt/>
   <#if po.fieldName !='id' && sub.foreignKeys[0]?uncap_first != po.fieldName>
   {
    title: '${po.filedComment}',
    align:"center",
    <#if po.classType=='date'>
    dataIndex: '${po.fieldName}',
    customRender:({text}) =>{
      return !text?"":(text.length>10?text.substr(0,10):text)
    },
   <#else>
    dataIndex: '${po.fieldName}',
   </#if>
   },
   </#if>
 </#list>
];
 
export const ${sub.entityName?uncap_first}FormSchema: FormSchema[] = [
   // TODO 主键隐藏字段,目前写死为ID
   {label: '', field: 'id', component: 'Input', show: false},
<#-- 循环子表的列 开始 -->
<#list sub.colums as po><#rt/>
<#if po.filedComment !='外键' >
   {
       label: '${po.filedComment}',
       field: '${po.fieldName}',
        <#if po.fieldType =='date'>
       component: 'DatePicker',
        <#elseif po.fieldType =='datetime'>
       component: 'DatePicker',
       componentProps: {
         showTime: true,
         valueFormat: 'YYYY-MM-DD hh:mm:ss',
       },
        <#elseif "int,decimal,double,"?contains(po.fieldType)>
       component: 'InputNumber',
        <#else>
       component: 'Input',
       </#if>
       <#if po.fieldName =='id'><#rt/>
       show:false,
       </#if>
     },
</#if>
</#list>
<#-- 循环子表的列 结束 -->
  ]
</#list>