This commit is contained in:
java110 2023-02-03 13:31:21 +08:00
commit 74656b3071
4 changed files with 5 additions and 5 deletions

View File

@ -67,7 +67,7 @@
<td class="text-center">{{fee.ownerTel}}</td>
<td class="text-center">{{fee.endTime}}</td>
<td class="text-center">{{fee.deadlineTime}}</td>
<td class="text-center">{{_getAllFeeOweAmount(fee)}}</td>
<td class="text-center">{{fee.amountOwed}}</td>
<td class="text-center">{{fee.updateTime}}</td>
<!-- <td class="text-center">
<button class="btn btn-primary btn-xs" v-on:click="chooseRoom(room)">

View File

@ -34,7 +34,7 @@
param,
function (json) {
var _roomInfo = JSON.parse(json);
vc.component.ownerOweFeesInfo.fees = _roomInfo.rooms;
vc.component.ownerOweFeesInfo.fees = _roomInfo.data;
vc.emit('ownerOweFees', 'paginationPlus', 'init', {
total: _roomInfo.records,
dataCount: _roomInfo.total,

View File

@ -67,7 +67,7 @@
<td class="text-center">{{fee.ownerTel}}</td>
<td class="text-center">{{fee.endTime}}</td>
<td class="text-center">{{fee.deadlineTime}}</td>
<td class="text-center">{{_getAllFeeOweAmount(fee)}}</td>
<td class="text-center">{{fee.amountOwed}}</td>
<td class="text-center">{{fee.updateTime}}</td>
<!-- <td class="text-center">
<button class="btn btn-primary btn-xs" v-on:click="chooseRoom(room)">

View File

@ -35,7 +35,7 @@
param,
function (json) {
var _roomInfo = JSON.parse(json);
vc.component.roomOweFeesInfo.fees = _roomInfo.rooms;
vc.component.roomOweFeesInfo.fees = _roomInfo.data;
vc.emit('roomOweFees', 'paginationPlus', 'init', {
total: _roomInfo.records,
dataCount: _roomInfo.total,
@ -55,7 +55,7 @@
$('#roomOweFeesModel').modal('hide');
},
_getFeeOweAllAmount: function (item) {
_getRoomFeeOweAllAmount: function (item) {
let _fees = $that.roomOweFeesInfo.fees;
let _amountOwed = 0.0;
_fees.forEach(_feeItem => {