...
|
...
|
@@ -45,7 +45,7 @@ export default { |
|
|
placeholder: '请输入持卡人姓名',
|
|
|
type: 'name',
|
|
|
errorTip: '您输入的姓名不符合规范,请重新输入',
|
|
|
regx: /^[u4e00-u9fa5a-zA-Z]{2,}$/
|
|
|
regx: /^([\u4e00-\u9fa5]|[A-Za-z]){2,}$/
|
|
|
},
|
|
|
{
|
|
|
title: '身份证号',
|
...
|
...
|
@@ -107,7 +107,7 @@ export default { |
|
|
methods: {
|
|
|
...mapActions(['fetchBankList', 'checkBankCard', 'bindBankCard']),
|
|
|
isReadonly(item) {
|
|
|
return !!item.tapGo;
|
|
|
return !!item.select;
|
|
|
},
|
|
|
inputChange(index, e) {
|
|
|
this.changeFormValue(index, e.target.value);
|
...
|
...
|
|