diff --git a/public/components/property/addOwner/addOwner.js b/public/components/property/addOwner/addOwner.js index ff6391d02..688097d13 100755 --- a/public/components/property/addOwner/addOwner.js +++ b/public/components/property/addOwner/addOwner.js @@ -46,8 +46,8 @@ }, { limit: "maxin", - param: "2,10", - errInfo: "姓名长度必须在2位至10位" + param: "2,64", + errInfo: "姓名长度必须在2位至64位" }, ], 'addOwnerInfo.age': [ diff --git a/public/components/property/editOwner/editOwner.js b/public/components/property/editOwner/editOwner.js index 802846b92..48b4b8941 100755 --- a/public/components/property/editOwner/editOwner.js +++ b/public/components/property/editOwner/editOwner.js @@ -61,8 +61,8 @@ }, { limit: "maxin", - param: "2,10", - errInfo: "名称长度必须在2位至10位" + param: "2,64", + errInfo: "名称长度必须在2位至64位" }, ], 'editOwnerInfo.age': [ diff --git a/public/pages/property/printPayFee/printPayFee.js b/public/pages/property/printPayFee/printPayFee.js index fd76dc177..bf13d71c1 100755 --- a/public/pages/property/printPayFee/printPayFee.js +++ b/public/pages/property/printPayFee/printPayFee.js @@ -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('请求失败处理');