mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-23 21:36:39 +08:00
228 lines
6.1 KiB
Vue
228 lines
6.1 KiB
Vue
<template>
|
|
<view>
|
|
<view>
|
|
<checkbox-group class="block" @change="checkboxChange($event)">
|
|
<view class="cu-list menu" v-for="(item,index) in fees" :key="index" :data-item="item">
|
|
<view class="cu-item">
|
|
<view class="content padding-tb-sm flex justify-start">
|
|
<view>
|
|
<checkbox :class="item.selected == '1'?'checked':''"
|
|
:checked="item.selected == '1'?true:false" :value="item.feeId">
|
|
</checkbox>
|
|
</view>
|
|
<view class="margin-left-sm" @click="_showDetailFee(item)">
|
|
<view>
|
|
<view class="text-cut" style="width:220px">{{item.feeName}}</view>
|
|
</view>
|
|
<view class="text-gray text-sm">
|
|
<text class="margin-right-xs">{{item.endTime}}至{{_getDeadlineTime(item)}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="action">
|
|
<text class="text-grey text-sm">应缴:¥{{item.feeTotalPrice}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="sub-info flex justify-start flex-wrap" v-if="item.showDetail">
|
|
<view class="sub-info-item text-gray text-sm" v-if="item.preDegrees">
|
|
<text class="margin-right-xs">上期读数:{{item.preDegrees}}</text>
|
|
</view>
|
|
<view class="sub-info-item text-gray text-sm" v-if="item.preDegrees">
|
|
<text class="margin-right-xs">上期读表时间:{{_getReadTime(item.preReadingTime)}}</text>
|
|
</view>
|
|
<view class="sub-info-item text-gray text-sm" v-if="item.curDegrees">
|
|
<text class="margin-right-xs">本期读数:{{item.curDegrees}}</text>
|
|
</view>
|
|
<view class="sub-info-item text-gray text-sm" v-if="item.preDegrees">
|
|
<text class="margin-right-xs">本期读表时间:{{_getReadTime(item.curReadingTime)}}</text>
|
|
</view>
|
|
<view class="sub-info-item text-gray text-sm" v-if="item.curDegrees">
|
|
<text class="margin-right-xs">使用量:{{item.curDegrees-item.preDegrees}}</text>
|
|
</view>
|
|
<view class="sub-info-item text-gray text-sm" v-if="item.payerObjName">
|
|
<text class="margin-right-xs">房号:{{item.payerObjName}}</text>
|
|
</view>
|
|
<view class="sub-info-item text-gray text-sm" >
|
|
<text class="margin-right-xs">单价:{{item.mwPrice && item.mwPrice>0?item.mwPrice:item.squarePrice}}/{{item.additionalAmount}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</checkbox-group>
|
|
</view>
|
|
|
|
<view v-if="fees.length > 0" class="bg-white border flex justify-end"
|
|
style="position: fixed;width: 100%;bottom: 0;">
|
|
|
|
<view class="action text-orange margin-right line-height">
|
|
合计:{{receivableAmount}}元
|
|
</view>
|
|
<view class="btn-group">
|
|
<button class="cu-btn bg-red shadow-blur lgplus sharp" @click="_payOweFee()">提交订单</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getRoomOweFees,
|
|
toPayOweFee
|
|
} from '../../api/fee/fee.js';
|
|
|
|
import {
|
|
dateSubOneDay,
|
|
getDate,
|
|
formatDate
|
|
} from '../../lib/java110/utils/DateUtil.js';
|
|
import {
|
|
getCurrentCommunity
|
|
} from '../../api/community/community.js';
|
|
export default {
|
|
name: "oweFee",
|
|
data() {
|
|
return {
|
|
roomId:'',
|
|
fees: [],
|
|
receivableAmount: 0.0,
|
|
payModal: false,
|
|
payQrImg: '',
|
|
feeIds: [],
|
|
};
|
|
},
|
|
methods:{
|
|
_loadRoomOweFee: function(_param) {
|
|
this.feeIds = [];
|
|
this.fees = [];
|
|
this.receivableAmount = 0.0;
|
|
if (!_param || !_param.roomId) {
|
|
return;
|
|
}
|
|
this.roomId = _param.roomId;
|
|
let _that = this;
|
|
let _objData = {
|
|
payObjId: _param.roomId,
|
|
payObjType: '3333',
|
|
page: 1,
|
|
row: 50,
|
|
communityId: getCurrentCommunity().communityId
|
|
}
|
|
this.feeIds = [];
|
|
getRoomOweFees(_that, _objData)
|
|
.then(function(_fees) {
|
|
_fees.forEach(function(_item) {
|
|
_item.selected = "1";
|
|
_that.feeIds.push(_item.feeId);
|
|
})
|
|
_that.fees = _fees;
|
|
return _fees;
|
|
}, function(error) {
|
|
uni.showToast({
|
|
icon: 'none',
|
|
title: '没有欠费信息'
|
|
})
|
|
_that.fees = [];
|
|
})
|
|
.then(function(_fees) {
|
|
_that.receivableAmount = 0.0;
|
|
_fees.forEach(function(_item) {
|
|
_that.receivableAmount += _item.feeTotalPrice;
|
|
|
|
})
|
|
_that.receivableAmount = _that.receivableAmount.toFixed(2);
|
|
})
|
|
},
|
|
_payOweFee: function() {
|
|
this.context.navigateTo({
|
|
url: "/pages/fee/payFeeByQrCode?communityId=" +
|
|
getCurrentCommunity().communityId +
|
|
"&roomId=" + this.roomId+"&feeIds="+this.feeIds.join(',')
|
|
})
|
|
},
|
|
_getDeadlineTime: function(_fee) {
|
|
//todo 处理周期性费用和间接费用的结束时间
|
|
return dateSubOneDay(_fee.startTime, _fee.deadlineTime, _fee.feeFlag);
|
|
},
|
|
_getReadTime: function(_value) {
|
|
let _date = getDate(_value);
|
|
return formatDate(_date);
|
|
},
|
|
_showDetailFee: function(_fee) {
|
|
let _fees = this.fees;
|
|
_fees.forEach(item => {
|
|
//item.showDetail = false;
|
|
if (_fee.feeId == item.feeId) {
|
|
item.showDetail = !item.showDetail;
|
|
}
|
|
});
|
|
this.$forceUpdate();
|
|
},
|
|
checkboxChange: function(e) {
|
|
console.log(e)
|
|
let _that = this;
|
|
this.feeIds = e.detail.value;
|
|
_that.fees.forEach(function(_item) {
|
|
_item.selected = "0";
|
|
_that.feeIds.forEach(_feeId => {
|
|
if (_item.feeId == _feeId) {
|
|
_item.selected = "1";
|
|
}
|
|
});
|
|
})
|
|
this.computeAmount();
|
|
},
|
|
computeAmount:function(){
|
|
let _that =this;
|
|
let _fees = this.fees;
|
|
let _feeIds = this.feeIds;
|
|
let _receivableAmount = 0.0;
|
|
_fees.forEach(_item=>{
|
|
_feeIds.forEach(_feeId =>{
|
|
if(_item.feeId == _feeId){
|
|
_receivableAmount += parseFloat(_item.feeTotalPrice);
|
|
}
|
|
})
|
|
});
|
|
_that.receivableAmount = _receivableAmount.toFixed(2);
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
|
|
.cu-list.menu-avatar>.cu-item .content-left {
|
|
left: 30upx;
|
|
}
|
|
|
|
.cu-list+.cu-list {
|
|
margin-top: 10upx;
|
|
}
|
|
|
|
.cu-btn.lgplus {
|
|
padding: 0 20px;
|
|
font-size: 18px;
|
|
height: 100upx;
|
|
|
|
}
|
|
|
|
.cu-btn.sharp {
|
|
border-radius: 0upx;
|
|
}
|
|
|
|
.line-height {
|
|
line-height: 100upx;
|
|
}
|
|
.sub-info {
|
|
background-color: #fff;
|
|
//margin-top: 0.5upx;
|
|
padding: 15upx;
|
|
|
|
.sub-info-item {
|
|
width: 45%;
|
|
margin: 10upx 15upx 0upx 15upx;
|
|
}
|
|
}
|
|
</style>
|