fix 标准化活动-标准化工作领域长度改为100;集团参与信息:电话邮箱不校验格式
This commit is contained in:
@@ -137,9 +137,12 @@ export default {
|
||||
validateTrigger: 'blur'
|
||||
},
|
||||
// 电话
|
||||
phone: { rules: [{ required: true, validator: this.checkPhone }], validateTrigger: 'blur' },
|
||||
phone: {
|
||||
rules: [{ required: true, message: this.$t('pleaseEnter') + this.$t('businessSupport.standardizationActivity.phone') }],
|
||||
validateTrigger: 'blur'
|
||||
},
|
||||
// 邮箱
|
||||
mailbox: { rules: [{ required: true, validator: this.checkEmail }], validateTrigger: 'blur' },
|
||||
mailbox: { rules: [{ required: true, message: this.$t('pleaseEnter') + this.$t('user.mailbox') }], validateTrigger: 'blur' },
|
||||
// 身份
|
||||
identity: {
|
||||
rules: [{ required: true, message: this.$t('pleaseEnter') + this.$t('user.identity') }],
|
||||
|
||||
+1
-1
@@ -56,7 +56,7 @@
|
||||
:wrapperCol="wrapperCol"
|
||||
:label="$t('businessSupport.standardizationActivity.standardizationWorkArea')">
|
||||
<a-input :placeholder="$t('pleaseEnter') + $t('businessSupport.standardizationActivity.standardizationWorkArea')"
|
||||
:maxLength="50"
|
||||
:maxLength="100"
|
||||
:disabled="disabled"
|
||||
v-decorator="['workingArea', validatorRules.workingArea]" />
|
||||
</a-form-item>
|
||||
|
||||
Reference in New Issue
Block a user