6a072c84 by joe

1

1 parent 8f8200c8
......@@ -231,7 +231,10 @@ export default {
this.errorTips.contactMethodErr = "";
}
},
'data.complain': function () {
'data.complain': function (v, ov) {
if (v.length > 500) {
this.data.complain = v.substring(0, 500);
}
this.errorTips.complainErr = "";
},
'data.policyNumber': function () {
......
......@@ -206,7 +206,10 @@ export default {
}
},
'data.instruction': function () {
'data.instruction': function (v, ov) {
if (v.length > 1000) {
this.data.instruction = v.substring(0, 1000);
}
this.errorTips.e8 = "";
this.errorTips.e5 = "";
},
......