diff --git a/public/components/property/importMeterWaterFee2/importMeterWaterFee2.html b/public/components/property/importMeterWaterFee2/importMeterWaterFee2.html
index adbb2fe5b..c1a002ed8 100644
--- a/public/components/property/importMeterWaterFee2/importMeterWaterFee2.html
+++ b/public/components/property/importMeterWaterFee2/importMeterWaterFee2.html
@@ -33,9 +33,9 @@
-
+
diff --git a/public/components/property/importMeterWaterFee2/importMeterWaterFee2.js b/public/components/property/importMeterWaterFee2/importMeterWaterFee2.js
index 30f4a7c51..b5095a232 100644
--- a/public/components/property/importMeterWaterFee2/importMeterWaterFee2.js
+++ b/public/components/property/importMeterWaterFee2/importMeterWaterFee2.js
@@ -74,8 +74,8 @@
vc.http.upload(
- 'importMeterWaterFee2',
- 'importData',
+ 'importMeterWaterFee',
+ 'importData2',
param,
{
emulateJSON: true,
diff --git a/public/components/property/prestoreAccount/prestoreAccount.js b/public/components/property/prestoreAccount/prestoreAccount.js
index 9907d10c0..840b5be46 100644
--- a/public/components/property/prestoreAccount/prestoreAccount.js
+++ b/public/components/property/prestoreAccount/prestoreAccount.js
@@ -73,8 +73,9 @@
if (res.status == 200) {
//关闭model
$('#prestoreAccountModel').modal('hide');
- vc.component.clearAddFloorInfo();
- vc.emit('listFloor', 'listFloorData', {});
+ vc.component.clearPrestoreAccountInfo();
+ vc.emit('accountManage', 'listshopAccount', {});
+ vc.toast('预存成功');
return;
}
@@ -88,7 +89,7 @@
});
},
- clearAddFloorInfo: function () {
+ clearPrestoreAccountInfo: function () {
vc.component.prestoreAccountInfo = {
tel: '',
ownerId: '',
diff --git a/public/components/property/simplifyRoomFee/simplifyRoomFee.html b/public/components/property/simplifyRoomFee/simplifyRoomFee.html
index ba52102bf..485a66da9 100755
--- a/public/components/property/simplifyRoomFee/simplifyRoomFee.html
+++ b/public/components/property/simplifyRoomFee/simplifyRoomFee.html
@@ -76,11 +76,11 @@
{{fee.startTime}} |
{{_getEndTime(fee)}} |
{{_getDeadlineTime(fee)}} |
-
上期度数:{{fee.preDegrees}}
本期度数:{{fee.curDegrees}}
- 单价:{{fee.squarePrice}}
+ 单价:{{fee.wmPrice?fee.wmPrice:fee.squarePrice}}
附加费:{{fee.additionalAmount}}
|
+
+
+
\ No newline at end of file
diff --git a/public/pages/property/accountDetailManage/accountDetailManage.js b/public/pages/property/accountDetailManage/accountDetailManage.js
new file mode 100644
index 000000000..6664704e9
--- /dev/null
+++ b/public/pages/property/accountDetailManage/accountDetailManage.js
@@ -0,0 +1,76 @@
+/**
+ 入驻小区
+**/
+(function (vc) {
+ var DEFAULT_PAGE = 1;
+ var DEFAULT_ROWS = 10;
+ vc.extends({
+ data: {
+ accountDetailManageInfo: {
+ accountDetails: [],
+ shopAccounts: [],
+ total: 0,
+ records: 1,
+ moreCondition: false,
+ scId: '',
+ conditions: {
+ acctId: '',
+ detailType: '',
+ orderId: '',
+ }
+ }
+ },
+ _initMethod: function () {
+ $that.accountDetailManageInfo.conditions.acctId = vc.getParam('acctId');
+ vc.component._listAccountDetails(DEFAULT_PAGE, DEFAULT_ROWS);
+ },
+ _initEvent: function () {
+
+ vc.on('accountDetailManage', 'listAccountDetail', function (_param) {
+ vc.component._listAccountDetails(DEFAULT_PAGE, DEFAULT_ROWS);
+ });
+ vc.on('pagination', 'page_event', function (_currentPage) {
+ vc.component._listAccountDetails(_currentPage, DEFAULT_ROWS);
+ });
+ },
+ methods: {
+ _listAccountDetails: function (_page, _rows) {
+
+ vc.component.accountDetailManageInfo.conditions.page = _page;
+ vc.component.accountDetailManageInfo.conditions.row = _rows;
+ var param = {
+ params: vc.component.accountDetailManageInfo.conditions
+ };
+
+ //发送get请求
+ vc.http.apiGet('/account/queryOwnerAccountDetail',
+ param,
+ function (json, res) {
+ var _accountDetailManageInfo = JSON.parse(json);
+ vc.component.accountDetailManageInfo.total = _accountDetailManageInfo.total;
+ vc.component.accountDetailManageInfo.records = _accountDetailManageInfo.records;
+ vc.component.accountDetailManageInfo.accountDetails = _accountDetailManageInfo.data;
+ vc.emit('pagination', 'init', {
+ total: vc.component.accountDetailManageInfo.records,
+ currentPage: _page
+ });
+ }, function (errInfo, error) {
+ console.log('请求失败处理');
+ }
+ );
+ },
+ _queryAccountDetailMethod: function () {
+ vc.component._listAccountDetails(DEFAULT_PAGE, DEFAULT_ROWS);
+ },
+ _moreCondition: function () {
+ if (vc.component.accountDetailManageInfo.moreCondition) {
+ vc.component.accountDetailManageInfo.moreCondition = false;
+ } else {
+ vc.component.accountDetailManageInfo.moreCondition = true;
+ }
+ }
+
+
+ }
+ });
+})(window.vc);
diff --git a/public/pages/property/accountManage/accountManage.js b/public/pages/property/accountManage/accountManage.js
index 3c6485beb..badb29846 100644
--- a/public/pages/property/accountManage/accountManage.js
+++ b/public/pages/property/accountManage/accountManage.js
@@ -68,7 +68,10 @@
}
},
_prestoreAccount: function () {
- vc.emit('prestoreAccount','openAddModal',{});
+ vc.emit('prestoreAccount', 'openAddModal', {});
+ },
+ _accountDetail: function (_account) {
+ vc.jumpToPage('/admin.html#/pages/property/accountDetailManage?acctId=' + _account.acctId);
}
diff --git a/public/pages/property/listCarFee/listCarFee.html b/public/pages/property/listCarFee/listCarFee.html
index 59f3856f1..0b6665243 100755
--- a/public/pages/property/listCarFee/listCarFee.html
+++ b/public/pages/property/listCarFee/listCarFee.html
@@ -51,7 +51,7 @@
v-if="fee.feeTypeCd == '888800010015' || fee.feeTypeCd == '888800010016' ">
上期度数:{{fee.preDegrees}}
本期度数:{{fee.curDegrees}}
- 单价:{{fee.squarePrice}}
+ 单价:{{fee.wmPrice?fee.wmPrice:fee.squarePrice}}
附加费:{{fee.additionalAmount}}
|
diff --git a/public/pages/property/listContractFee/listContractFee.html b/public/pages/property/listContractFee/listContractFee.html
index e519e5c0d..0282c2e45 100755
--- a/public/pages/property/listContractFee/listContractFee.html
+++ b/public/pages/property/listContractFee/listContractFee.html
@@ -49,10 +49,10 @@
| {{fee.startTime}} |
{{_getEndTime(fee)}} |
{{_getDeadlineTime(fee)}} |
-
+ |
上期度数:{{fee.preDegrees}}
本期度数:{{fee.curDegrees}}
- 单价:{{fee.squarePrice}}
+ 单价:{{fee.wmPrice?fee.wmPrice:fee.squarePrice}}
附加费:{{fee.additionalAmount}}
|
diff --git a/public/pages/property/listRoomFee/listRoomFee.html b/public/pages/property/listRoomFee/listRoomFee.html
index c4c980a01..13c45d80e 100755
--- a/public/pages/property/listRoomFee/listRoomFee.html
+++ b/public/pages/property/listRoomFee/listRoomFee.html
@@ -54,10 +54,10 @@
| {{fee.startTime}} |
{{_getEndTime(fee)}} |
{{_getDeadlineTime(fee)}} |
-
+ |
上期度数:{{fee.preDegrees}}
本期度数:{{fee.curDegrees}}
- 单价:{{fee.squarePrice}}
+ 单价:{{fee.wmPrice?fee.wmPrice:fee.squarePrice}}
附加费:{{fee.additionalAmount}}
|
|