优化业主手机端

This commit is contained in:
wuxw 2023-10-09 10:32:19 +08:00
parent 95b68322ed
commit a60111e7a0

View File

@ -12,10 +12,10 @@
</view> </view>
<view class="cu-item"> <view class="cu-item">
<view class="content"> <view class="content">
<text class="text-grey">剩余读数</text> <text class="text-grey">剩余余额</text>
</view> </view>
<view class="action"> <view class="action">
<text class="text-grey text-sm">{{degree}}</text> <text class="text-grey text-sm">{{prestoreDegrees}}</text>
</view> </view>
</view> </view>
<view class="cu-item"> <view class="cu-item">
@ -54,7 +54,7 @@
machineId:'', machineId:'',
machineName:'', machineName:'',
feeConfigName:'', feeConfigName:'',
degree:'0', prestoreDegrees:'0',
amount:'0', amount:'0',
appId:'', appId:'',
communityId:'', communityId:'',
@ -78,7 +78,7 @@
}).then(_data=>{ }).then(_data=>{
_that.machineName=_data[0].machineName; _that.machineName=_data[0].machineName;
_that.feeConfigName=_data[0].feeConfigName; _that.feeConfigName=_data[0].feeConfigName;
_that.degree=_data[0].degree; _that.prestoreDegrees=_data[0].prestoreDegrees;
_that.amount=_data[0].amount; _that.amount=_data[0].amount;
}) })
}, },