fix:模版分类名称长度限制50

This commit is contained in:
junjie 2021-06-23 15:43:54 +08:00
parent 22e87971e1
commit 33a221dc30

View File

@ -84,7 +84,8 @@ export default {
currentTemplateType: 'system',
templateEditFormRules: {
name: [
{ required: true, message: this.$t('commons.input_content'), trigger: 'change' }
{ required: true, message: this.$t('commons.input_content'), trigger: 'change' },
{ max: 50, message: this.$t('commons.char_can_not_more_50'), trigger: 'change' }
]
},
templateEditForm: {},