|
@@ -41,7 +41,9 @@
|
|
|
</view>
|
|
|
|
|
|
|
|
|
- <view class="details" v-for="(item,i) in list" :key="i" >
|
|
|
+ <view class="details" v-for="(item,i) in list"
|
|
|
+ @click="gotoUrl('/pages/deductionRecord/deductionDetails?id='+item.id)"
|
|
|
+ :key="i" >
|
|
|
<view class="icon">
|
|
|
<image class="img" v-if="item.remark.indexOf('水')>-1" src="@/assets/img/wImage@1x.png" mode=""></image>
|
|
|
<image class="img" v-else-if="item.remark.indexOf('房')>-1||item.remark.indexOf('租')>-1" src="@/assets/img/wImage.png" mode=""></image>
|
|
@@ -185,7 +187,11 @@
|
|
|
// }
|
|
|
}).catch(error => {
|
|
|
//uni.hideLoading();
|
|
|
-
|
|
|
+ uni.hideLoading();
|
|
|
+ uni.showToast({
|
|
|
+ icon: "none",
|
|
|
+ title: error
|
|
|
+ })
|
|
|
})
|
|
|
},
|
|
|
extraInfoText(extraInfo){
|
|
@@ -262,7 +268,11 @@
|
|
|
//uni.upx2px(600)
|
|
|
|
|
|
}).catch(error => {
|
|
|
-
|
|
|
+ uni.hideLoading();
|
|
|
+ uni.showToast({
|
|
|
+ icon: "none",
|
|
|
+ title: error
|
|
|
+ })
|
|
|
})
|
|
|
},
|
|
|
getPle(list){
|
|
@@ -352,7 +362,10 @@
|
|
|
this.list=response.data.data;
|
|
|
}).catch(error => {
|
|
|
uni.hideLoading();
|
|
|
-
|
|
|
+ uni.showToast({
|
|
|
+ icon: "none",
|
|
|
+ title: error
|
|
|
+ })
|
|
|
})
|
|
|
},
|
|
|
contractItemList(){
|
|
@@ -374,7 +387,11 @@
|
|
|
|
|
|
}).catch(error => {
|
|
|
//uni.hideLoading();
|
|
|
-
|
|
|
+ uni.hideLoading();
|
|
|
+ uni.showToast({
|
|
|
+ icon: "none",
|
|
|
+ title: error
|
|
|
+ })
|
|
|
})
|
|
|
},
|
|
|
}
|