diff --git a/public/pages/property/listRoomFee/listRoomFee.html b/public/pages/property/listRoomFee/listRoomFee.html index 9223a42a9..8ac9b928b 100644 --- a/public/pages/property/listRoomFee/listRoomFee.html +++ b/public/pages/property/listRoomFee/listRoomFee.html @@ -60,6 +60,10 @@
单价:{{fee.squarePrice}}
附加费:{{fee.additionalAmount}}
+ +
算法:{{_getAttrValue(fee.feeAttrs,'390005')}}
+
用量:{{_getAttrValue(fee.feeAttrs,'390003')}}
+
面积:{{listRoomCreateFeeInfo.builtUpArea}}
单价:{{fee.squarePrice}}
diff --git a/public/pages/property/listRoomFee/listRoomFee.js b/public/pages/property/listRoomFee/listRoomFee.js index 92309ab2d..3c9a93909 100644 --- a/public/pages/property/listRoomFee/listRoomFee.js +++ b/public/pages/property/listRoomFee/listRoomFee.js @@ -115,6 +115,17 @@ }); }, + _getAttrValue:function(_attrs,_specCd){ + let _value = ""; + _attrs.forEach(item => { + if(item.specCd == _specCd){ + _value = item.value; + return ; + } + }); + + return _value; + } } });