mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-24 05:46:09 +08:00
148 lines
3.6 KiB
Vue
148 lines
3.6 KiB
Vue
<template>
|
|
<view>
|
|
<view class="cu-bar bg-white search ">
|
|
<view class="search-form round">
|
|
<text class="cuIcon-search"></text>
|
|
<input type="text" placeholder="输入房屋编号 楼栋-单元-房屋" v-model="roomName" confirm-type="search"></input>
|
|
</view>
|
|
<view class="action">
|
|
<button class="cu-btn line-blue round" @tap="_loadRooms()">搜索</button>
|
|
<button class="cu-btn line-blue round margin-left-sm" v-if="roomId" @tap="_wirteCallable()">登记</button>
|
|
</view>
|
|
</view>
|
|
<view class="margin-top" v-if="callables.length > 0">
|
|
<view class="bg-white margin-bottom padding-sm margin-sm radius-sm" v-for="(item,index) in callables"
|
|
:key="index">
|
|
<view class="apply-title flex justify-between">
|
|
<view>
|
|
<text class="text-bold">{{item.feeName}}</text>
|
|
</view>
|
|
<view class="flex justify-start">
|
|
<!-- <button class="cu-btn round sm line-black margin-left-sm"
|
|
@tap="_toApplyDetail(item)">详情</button> -->
|
|
{{item.createTime}}
|
|
</view>
|
|
</view>
|
|
<view class="apply-content flex justify-start flex-wrap">
|
|
<view class="item">
|
|
<text>催缴方式:</text>
|
|
<text>{{item.callableWayName}}</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>业主:</text>
|
|
<text>{{item.ownerName}}</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>催缴金额:</text>
|
|
<text>{{item.amountdOwed}}</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>催缴人:</text>
|
|
<text>{{item.staffName}}</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>欠费段:</text>
|
|
<text>{{_formateDate(item.startTime)}}~{{_formateDate(item.endTime)}}</text>
|
|
</view>
|
|
<view class="item">
|
|
<text>催缴说明:</text>
|
|
<text>{{item.remark}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view v-else>
|
|
<no-data-page></no-data-page>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {loadRooms} from '@/api/room/room.js';
|
|
import {queryOweFeeCallable} from '@/api/fee/callableFeeApi.js';
|
|
import noDataPage from '../../components/no-data-page/no-data-page.vue';
|
|
import {getDate,formatDate} from '../../lib/java110/utils/DateUtil.js';
|
|
export default {
|
|
data() {
|
|
return {
|
|
roomName:'',
|
|
roomId:'',
|
|
callables:[]
|
|
}
|
|
},
|
|
onShow() {
|
|
if(!this.roomId){
|
|
return ;
|
|
}
|
|
this._loadOweFeeCallable();
|
|
},
|
|
methods: {
|
|
_loadRooms:function(){
|
|
let _that = this;
|
|
loadRooms(this,{
|
|
page:1,
|
|
row:1,
|
|
communityId:this.getCommunityId(),
|
|
flag:1,
|
|
roomNum:this.roomName
|
|
}).then(_data=>{
|
|
let _json = _data.data;
|
|
if(!_json.rooms || _json.rooms.length < 1){
|
|
uni.showToast({
|
|
icon:'none',
|
|
title:'房屋不存在'
|
|
});
|
|
return;
|
|
}
|
|
_that.roomId = _json.rooms[0].roomId
|
|
return _json.rooms[0];
|
|
}).then(_data=>{
|
|
if(!_that.roomId){
|
|
return ;
|
|
}
|
|
_that._loadOweFeeCallable();
|
|
})
|
|
},
|
|
_loadOweFeeCallable:function(){
|
|
let _that = this;
|
|
queryOweFeeCallable(this,{
|
|
page:1,
|
|
row:50,
|
|
communityId:this.getCommunityId(),
|
|
payerObjId:this.roomId
|
|
}).then(_data =>{
|
|
_that.callables = _data.data;
|
|
})
|
|
},
|
|
_wirteCallable:function(){
|
|
uni.navigateTo({
|
|
url:'/pages/fee/writeOweFeeCallable?roomId='+this.roomId+"&roomName="+this.roomName
|
|
})
|
|
},
|
|
_formateDate:function(_time){
|
|
let _date = getDate(_time);
|
|
return formatDate(_date);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.apply-title {
|
|
height: 60upx;
|
|
line-height: 50upx;
|
|
border-bottom: 1upx solid #F1F1F1;
|
|
}
|
|
|
|
.apply-content {
|
|
.item {
|
|
width: 50%;
|
|
margin-top: 20upx;
|
|
}
|
|
}
|
|
|
|
.radius-sm {
|
|
border-radius: 16upx;
|
|
}
|
|
</style>
|