This commit is contained in:
ylj20011123 2026-01-22 09:13:48 +08:00
parent 2fc99587bf
commit e56b53fb0c
7 changed files with 1787 additions and 1403 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -386,7 +386,8 @@
<view class="contentItem"> <view class="contentItem">
租金交付已完成 租金交付已完成
<text class="money">{{ item.rentDelivery ? item.rentDelivery > 100 ? 100 : item.rentDelivery + '%' : <text class="money">{{ item.rentDelivery ? item.rentDelivery > 100 ? 100 :
item.rentDelivery.toFixed(2) + '%' :
'-' '-'
}}</text> }}</text>
</view> </view>

View File

@ -642,7 +642,8 @@ export default {
bindDateChange(e) { // bindDateChange(e) { //
// let nowDate = this.theRequest.time // let nowDate = this.theRequest.time
let selectT = new Date(e.detail.value) let selectT = new Date(e.detail.value)
if (selectT <= new Date(this.lastDay)) {
// if (selectT <= new Date(this.lastDay)) {
this.theRequest.time = e.detail.value this.theRequest.time = e.detail.value
this.theRequest.month = this.$util.cutDate(e.detail.value, 'YYYYMM') this.theRequest.month = this.$util.cutDate(e.detail.value, 'YYYYMM')
this.sevenDate = [this.$util.cutDate(selectT, 'MM.DD', -13), this.sevenDate = [this.$util.cutDate(selectT, 'MM.DD', -13),
@ -660,7 +661,7 @@ export default {
uni.hideLoading() uni.hideLoading()
}) })
// $forceUpdate // $forceUpdate
} // }
}, },
toDetail(item, provinceId) { // provinceId toDetail(item, provinceId) { // provinceId

File diff suppressed because one or more lines are too long