优化代码

This commit is contained in:
java110 2021-07-22 11:52:15 +08:00
parent 79b8fd1acd
commit 11ae9b4de6
3 changed files with 7 additions and 4 deletions

View File

@ -46,8 +46,8 @@
},
{
limit: "maxin",
param: "2,10",
errInfo: "姓名长度必须在2位至10位"
param: "2,64",
errInfo: "姓名长度必须在2位至64位"
},
],
'addOwnerInfo.age': [

View File

@ -61,8 +61,8 @@
},
{
limit: "maxin",
param: "2,10",
errInfo: "名称长度必须在2位至10位"
param: "2,64",
errInfo: "名称长度必须在2位至64位"
},
],
'editOwnerInfo.age': [

View File

@ -131,6 +131,9 @@
if (_data.length > 0) {
$that.printPayFeeInfo.content = _data[0].content;
$that.printPayFeeInfo.qrImg = _data[0].qrImg;
if(_data[0].printName){
$that.printPayFeeInfo.communityName = _data[0].printName;
}
}
}, function (errInfo, error) {
console.log('请求失败处理');