优化显示问题

This commit is contained in:
905166056 2021-08-20 08:55:13 +08:00
parent 6eb92e2b02
commit b19fe4007c
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
<view class="cu-item" v-if="applyList.length === 0">
<view class="content">
<text class="cuIcon-warn text-green"></text>
<text class="text-grey">暂无装修信息</text>
<text class="text-grey">暂无申请信息</text>
</view>
<view class="action">

View File

@ -264,7 +264,7 @@
this.feeMonthName = this.paymentCycle + '个月';
this.feeMonth = this.paymentCycle;
let _endTime = addMonth(_lastDate, parseInt(this.feeMonth));
this.endTime = this._getDeadlineTime(_endTime);
this.endTime = formatDate(_endTime);
this.$nextTick(() => {
@ -289,7 +289,7 @@
this.showFeeMonth = false;
this.feeMonthName = _feeMonthName;
this.feeMonth = _feeMonth;
this.endTime = this._getDeadlineTime(_newDate);
this.endTime = formatDate(_newDate);
this.receivableAmount = this.getReceivableAmount();
this.$refs.vcDiscountRef._loadFeeDiscount(this.feeId,this.communityId,this.feeMonth);
},