WechatOwnerService/pages/fee/oweFee.vue
2023-09-25 14:42:57 +08:00

261 lines
6.4 KiB
Vue

<template>
<view>
<scroll-view scroll-y style="padding-bottom: 200rpx;">
<view class="block__title" v-if="fees.length > 0">应缴费用</view>
<view v-if="fees && fees.length >0">
<view class="cu-list menu" v-for="(item,index) in fees" :key="index" :data-item="item"
v-if="item.payOnline == 'Y'">
<view class="cu-item " @click="_showDetailFee(item)">
<view class="content padding-tb-sm">
<view>
<view class="text-cut" style="width:150px">{{item.feeName}}({{item.payerObjName}})
</view>
</view>
<view class="text-gray text-sm">
<text class="margin-right-xs">{{item.endTime}}至{{_getDeadlineTime(item)}}</text>
</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">
<text
class="margin-right-xs">单价:{{item.mwPrice && item.mwPrice>0?item.mwPrice:item.squarePrice}}/{{item.additionalAmount}}</text>
</view>
</view>
</view>
</view>
<view v-else>
<no-data-page></no-data-page>
</view>
</scroll-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="onPayFee()">缴费</button>
</view>
</view>
</view>
</view>
</template>
<script>
// pages/fee/payParkingFee.js
import context from '../../lib/java110/Java110Context.js';
const constant = context.constant;
import noDataPage from '../../components/no-data-page/no-data-page.vue'
import {
addMonth,
formatDate,
dateSubOneDay,
getDate,
} from '../../lib/java110/utils/DateUtil.js'
import {
getCurCommunity
} from '../../api/community/communityApi.js';
import {
getUserId
} from '../../api/user/userApi.js';
import {
getRoomOweFees
} from '../../api/fee/feeApi.js'
import {
getCurOwner
} from '../../api/owner/ownerApi.js'
import {
getRoomFees
} from '../../api/fee/feeApi.js';
import {autoLogin} from '../../api/user/sessionApi.js';
export default {
data() {
return {
scrollLeft: 0,
amount: 0,
receivableAmount: 0.00,
communityId: '',
communityName: '',
appId: '',
fees: [],
roomId: '',
storeId: ''
};
},
components:{
noDataPage
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function(options) {
context.onLoad(options);
autoLogin(options);
},
onShow() {
let _that = this;
getCurOwner().then(function(_owner) {
_that.communityId = _owner.communityId;
_that.communityName = _owner.communityName;
_that.ownerId = _owner.ownerId;
_that._loadOweFee();
})
},
methods: {
_loadOweFee: function() {
let _that = this;
let _objData = {
ownerId: this.ownerId,
page: 1,
row: 50,
communityId: this.communityId
}
_that.receivableAmount = 0;
getRoomOweFees(_objData)
.then(function(_fees) {
_that.fees = _fees;
if (_fees && _fees.length > 0) {
_that.storeId = _fees[0].incomeObjId;
}
return _fees;
}, function(error) {
uni.showToast({
icon: 'none',
title: '没有应缴费用'
})
})
.then(function(_fees) {
_fees.forEach(function(_item) {
if (_item.payOnline == 'Y') {
_that.receivableAmount += _item.feeTotalPrice;
}
})
_that.receivableAmount = _that.receivableAmount.toFixed(2);
})
},
onPayFee: function() {
//payOweFee(this);
let _receivedAmount = this.receivableAmount;
let _tradeType = 'JSAPI';
let _objData = {
business: "oweFee",
cycles: this.feeMonth,
communityId: this.communityId,
ownerId: this.ownerId,
feeName: '物业费',
receivedAmount: _receivedAmount,
tradeType: _tradeType,
//appId: uni.getStorageSync(mapping.W_APP_ID),
storeId: this.storeId
};
uni.setStorageSync('doing_cashier',_objData);
uni.navigateTo({
url:'/pages/fee/cashier?money='+_receivedAmount+"&business=oweFee&communityId="+this.communityId+"&cashierUserId="+getUserId()
})
},
_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();
}
}
};
</script>
<style lang="scss">
.ppf_item {
padding: 0rpx 0rpx 0rpx 0rpx;
}
.block__title {
margin: 0;
font-weight: 400;
font-size: 14px;
color: rgba(69, 90, 100, .6);
padding: 40rpx 30rpx 20rpx;
}
.button_up_blank {
height: 40rpx;
}
.block__bottom {
height: 180rpx;
}
.fee-last {
margin-bottom: 200upx;
}
.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>