Merge branch 'weiyu'

This commit is contained in:
weiyu
2022-04-21 17:36:15 +08:00
3 changed files with 30 additions and 15 deletions

View File

@ -24,6 +24,11 @@ export class SmsTemplateComponent implements OnInit {
searchSchema: SFSchema = {
properties: {
templateName: {
type: 'string',
title: '模板名称',
ui: { placeholder: '请输入模板名称' }
},
templateCode: {
type: 'string',
title: '模板编码',
@ -39,6 +44,11 @@ export class SmsTemplateComponent implements OnInit {
editSchema: SFSchema = {
properties: {
templateName: {
type: 'string',
title: '模板名称',
ui: { placeholder: '请输入模板名称' }
},
templateCode: {
type: 'string',
title: '模板编码',
@ -48,11 +58,6 @@ export class SmsTemplateComponent implements OnInit {
type: 'string',
title: '模板内容',
ui: { placeholder: '请输入模板内容' }
},
templateName: {
type: 'string',
title: '模板名称',
ui: { placeholder: '请输入模板名称' }
}
}
}