|
@@ -218,7 +218,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :xs="24" :sm="24" :md="12" :lg="8" :xl="8">
|
|
<a-col :xs="24" :sm="24" :md="12" :lg="8" :xl="8">
|
|
<a-form-model-item label="邮政编码" prop="zipCode">
|
|
<a-form-model-item label="邮政编码" prop="zipCode">
|
|
- <a-input v-model.trim="form.zipCode" id="merchantInfoManagementEdit-zipCode" :maxLength="30" allowClear placeholder="请输入邮政编码(最多30个字符)" />
|
|
|
|
|
|
+ <a-input v-model.trim="form.zipCode" id="merchantInfoManagementEdit-zipCode" :maxLength="6" allowClear placeholder="请输入邮政编码(最多6个字符)" />
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :xs="24" :sm="24" :md="12" :lg="8" :xl="8">
|
|
<a-col :xs="24" :sm="24" :md="12" :lg="8" :xl="8">
|
|
@@ -463,6 +463,18 @@ export default {
|
|
],
|
|
],
|
|
receiveMobile: [
|
|
receiveMobile: [
|
|
{ pattern: /^[0-9-]{11,13}$/, message: '请输入正确的电话号码!' }
|
|
{ pattern: /^[0-9-]{11,13}$/, message: '请输入正确的电话号码!' }
|
|
|
|
+ ],
|
|
|
|
+ indentityCard: [
|
|
|
|
+ { pattern: /^[0-9a-zA-Z]{15,18}$/, message: '请输入15-18位证件号码' }
|
|
|
|
+ ],
|
|
|
|
+ zipCode: [
|
|
|
|
+ { pattern: /^[1-9][0-9]{5}$/, message: '请输入正确的邮政编码' }
|
|
|
|
+ ],
|
|
|
|
+ mail: [
|
|
|
|
+ { pattern: /^\w+@[a-z0-9]\.[a-z]+$/, message: '请输入正确的邮箱' }
|
|
|
|
+ ],
|
|
|
|
+ tradeBankAccount: [
|
|
|
|
+ { pattern: /^[0-9a-zA-Z]{16,30}$/, message: '请输入正确银行卡号' }
|
|
]
|
|
]
|
|
},
|
|
},
|
|
addrProvinceList: [], // 省下拉
|
|
addrProvinceList: [], // 省下拉
|