diff --git a/public/components/property/addFeeConfig/addFeeConfig.html b/public/components/property/addFeeConfig/addFeeConfig.html index 1b6f0c01d..d8ab1cf14 100644 --- a/public/components/property/addFeeConfig/addFeeConfig.html +++ b/public/components/property/addFeeConfig/addFeeConfig.html @@ -7,19 +7,6 @@
- -
@@ -46,6 +33,13 @@
+
+ +
+ +
+
diff --git a/public/components/property/addFeeConfig/addFeeConfig.js b/public/components/property/addFeeConfig/addFeeConfig.js index 00419de3a..a8e976718 100644 --- a/public/components/property/addFeeConfig/addFeeConfig.js +++ b/public/components/property/addFeeConfig/addFeeConfig.js @@ -19,7 +19,8 @@ additionalAmount: '', feeTypeCds:[], computingFormulas:[], - billType:'' + billType:'', + paymentCycle:'' } }, _initMethod: function() { @@ -169,6 +170,17 @@ errInfo: "出账类型不能为空" } ], + 'addFeeConfigInfo.paymentCycle': [{ + limit: "required", + param: "", + errInfo: "缴费周期不能为空" + }, + { + limit: "num", + param: "", + errInfo: "缴费周期必须为数字 单位月" + }, + ] }); }, diff --git a/public/components/property/editFeeConfig/editFeeConfig.html b/public/components/property/editFeeConfig/editFeeConfig.html index c58f174e7..744cd2419 100644 --- a/public/components/property/editFeeConfig/editFeeConfig.html +++ b/public/components/property/editFeeConfig/editFeeConfig.html @@ -33,6 +33,13 @@
+
+ +
+ +
+
diff --git a/public/components/property/editFeeConfig/editFeeConfig.js b/public/components/property/editFeeConfig/editFeeConfig.js index 3a152bfd6..a72cfeed0 100644 --- a/public/components/property/editFeeConfig/editFeeConfig.js +++ b/public/components/property/editFeeConfig/editFeeConfig.js @@ -15,7 +15,8 @@ isDefault:'', feeTypeCds:[], computingFormulas:[], - billType:'' + billType:'', + paymentCycle:'' } }, _initMethod: function() { @@ -171,7 +172,18 @@ limit: "required", param: "", errInfo: "出账类型不能为空" - }] + }], + 'editFeeConfigInfo.paymentCycle': [{ + limit: "required", + param: "", + errInfo: "缴费周期不能为空" + }, + { + limit: "num", + param: "", + errInfo: "缴费周期必须为数字 单位月" + }, + ] }); },