mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-06-12 10:00:57 +08:00
加入 抄表度数功能
This commit is contained in:
parent
c100a0c938
commit
ec87f752e9
@ -56,6 +56,8 @@ export function getRoomFees(_objData,_tmpRoom) {
|
|||||||
_tmpRoom.paymentCycle = _roomFee.paymentCycle;
|
_tmpRoom.paymentCycle = _roomFee.paymentCycle;
|
||||||
_tmpRoom.preDegrees = _roomFee.preDegrees;
|
_tmpRoom.preDegrees = _roomFee.preDegrees;
|
||||||
_tmpRoom.curDegrees = _roomFee.curDegrees;
|
_tmpRoom.curDegrees = _roomFee.curDegrees;
|
||||||
|
_tmpRoom.preReadingTime = _roomFee.preReadingTime;
|
||||||
|
_tmpRoom.curReadingTime = _roomFee.curReadingTime;
|
||||||
moreRooms.push(_tmpRoom);
|
moreRooms.push(_tmpRoom);
|
||||||
});
|
});
|
||||||
resolve(moreRooms);
|
resolve(moreRooms);
|
||||||
|
|||||||
@ -74,6 +74,14 @@
|
|||||||
<text class="text-grey text-sm">{{endTime }}</text>
|
<text class="text-grey text-sm">{{endTime }}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="cu-item" v-if="preReadingTime">
|
||||||
|
<view class="content">
|
||||||
|
<text class="text-grey">上期读表时间</text>
|
||||||
|
</view>
|
||||||
|
<view class="action">
|
||||||
|
<text class="text-grey text-sm">{{preReadingTime }}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
<view class="cu-item" v-if="preDegrees">
|
<view class="cu-item" v-if="preDegrees">
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<text class="text-grey">上期度数</text>
|
<text class="text-grey">上期度数</text>
|
||||||
@ -82,6 +90,14 @@
|
|||||||
<text class="text-grey text-sm">{{preDegrees }}</text>
|
<text class="text-grey text-sm">{{preDegrees }}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="cu-item" v-if="curReadingTime">
|
||||||
|
<view class="content">
|
||||||
|
<text class="text-grey">本期读表时间</text>
|
||||||
|
</view>
|
||||||
|
<view class="action">
|
||||||
|
<text class="text-grey text-sm">{{curReadingTime }}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
<view class="cu-item" v-if="curDegrees">
|
<view class="cu-item" v-if="curDegrees">
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<text class="text-grey">本期度数</text>
|
<text class="text-grey">本期度数</text>
|
||||||
@ -180,7 +196,9 @@
|
|||||||
paymentCycle:1,
|
paymentCycle:1,
|
||||||
squarePrice: 0,
|
squarePrice: 0,
|
||||||
preDegrees:'',
|
preDegrees:'',
|
||||||
curDegrees:''
|
curDegrees:'',
|
||||||
|
preReadingTime:'',
|
||||||
|
curReadingTime:''
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -225,6 +243,8 @@
|
|||||||
this.squarePrice = _fee.squarePrice;
|
this.squarePrice = _fee.squarePrice;
|
||||||
this.preDegrees = _fee.preDegrees;
|
this.preDegrees = _fee.preDegrees;
|
||||||
this.curDegrees = _fee.curDegrees;
|
this.curDegrees = _fee.curDegrees;
|
||||||
|
this.preReadingTime = _fee.preReadingTime;
|
||||||
|
this.curReadingTime = _fee.curReadingTime;
|
||||||
if(this.feeFlag == '2006012'){
|
if(this.feeFlag == '2006012'){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user