|
@@ -49,6 +49,11 @@
|
|
|
}">
|
|
|
{{ item.isExpedit == 1 ? "已催费" : "未催费" }}
|
|
|
</view>
|
|
|
+ <view class="outstanding" :style="{
|
|
|
+ 'background-color': item.isSettled == 1 ? '#09C700' : '#FA5555',
|
|
|
+ }">
|
|
|
+ {{ item.isSettled == 1 ? "已结清" : "未结清" }}
|
|
|
+ </view>
|
|
|
|
|
|
<h3>{{item.tenantName}}</h3>
|
|
|
<view class="Currentamount">
|
|
@@ -66,7 +71,7 @@
|
|
|
<view class="Currentamount">
|
|
|
联系电话: {{item.phone}}
|
|
|
</view>
|
|
|
- <view class="Callfee" @click.stop="handleClick(item.id)">
|
|
|
+ <view class="Callfee" v-if="item.isSettled == 0" @click.stop="handleClick(item.id)">
|
|
|
催费
|
|
|
</view>
|
|
|
</view>
|
|
@@ -288,13 +293,23 @@
|
|
|
this.getalldata();
|
|
|
},
|
|
|
confirmtypes(e) {
|
|
|
- // console.log('22222', e.value[0])
|
|
|
- this.showtypes = false;
|
|
|
- this.mytypes = e.value[0].dictLabel;
|
|
|
- this.dataForm.arrearDay = e.value[0].dictValue;
|
|
|
- this.dataForm.page = 1;
|
|
|
- this.indexList=[];
|
|
|
- this.getalldata();
|
|
|
+ console.log('22222', e.value[0])
|
|
|
+ if(e.value[0].dictValue=='all'){
|
|
|
+
|
|
|
+ this.showtypes = false;
|
|
|
+ this.mytypes = e.value[0].dictLabel;
|
|
|
+ this.dataForm.arrearDay = '';
|
|
|
+ this.dataForm.page = 1;
|
|
|
+ this.indexList=[];
|
|
|
+ this.getalldata();
|
|
|
+ }else{
|
|
|
+ this.showtypes = false;
|
|
|
+ this.mytypes = e.value[0].dictLabel;
|
|
|
+ this.dataForm.arrearDay = e.value[0].dictValue;
|
|
|
+ this.dataForm.page = 1;
|
|
|
+ this.indexList=[];
|
|
|
+ this.getalldata();
|
|
|
+ }
|
|
|
},
|
|
|
canceltypes() {
|
|
|
this.showtypes = false;
|
|
@@ -398,7 +413,7 @@
|
|
|
color: #fff;
|
|
|
font-size: 14rpx;
|
|
|
position: absolute;
|
|
|
- top: 0px;
|
|
|
+ top: 90rpx;
|
|
|
right: 0px;
|
|
|
border-top-right-radius: 10rpx;
|
|
|
border-bottom-left-radius: 10rpx;
|