|
@@ -277,14 +277,14 @@ export default {
|
|
|
rules: {
|
|
|
name: [
|
|
|
this.MixinRequired(this.$t('frameManage.inputFrameName')),
|
|
|
- { min: 2, max: 20, message: this.$t('frameManage.inputLong'), trigger: 'blur' }
|
|
|
+ { min: 1, max: 20, message: this.$t('frameManage.inputLong'), trigger: 'blur' }
|
|
|
],
|
|
|
alias: [
|
|
|
- { min: 2, max: 20, message: this.$t('frameManage.inputLong'), trigger: 'blur' }
|
|
|
+ { min: 1, max: 20, message: this.$t('frameManage.inputLong'), trigger: 'blur' }
|
|
|
],
|
|
|
full_name: [
|
|
|
this.MixinRequired(this.$t('frameManage.inputFrameFullName')),
|
|
|
- { min: 2, max: 20, message: this.$t('frameManage.inputLong'), trigger: 'blur' }
|
|
|
+ { min: 1, max: 20, message: this.$t('frameManage.inputLong'), trigger: 'blur' }
|
|
|
]
|
|
|
},
|
|
|
/** 快速创建空间结构弹窗 **/
|