fix(项目): 创建项目长度限制

This commit is contained in:
Captain.B 2021-05-25 14:34:30 +08:00 committed by 刘瑞斌
parent 73828f3b09
commit a758fa1deb
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ export default {
rules: {
name: [
{required: true, message: this.$t('project.input_name'), trigger: 'blur'},
{min: 2, max: 50, message: this.$t('commons.input_limit', [2, 50]), trigger: 'blur'}
{min: 2, max: 60, message: this.$t('commons.input_limit', [2, 60]), trigger: 'blur'}
],
description: [
{max: 250, message: this.$t('commons.input_limit', [0, 250]), trigger: 'blur'}