修改解绑表的时候读数问题,抄表路线的抄表记录可以查看图片
This commit is contained in:
@@ -14,8 +14,8 @@
|
||||
<view class="table">
|
||||
<view class="thead">
|
||||
<view class="th" style="width: 40%; text-align: center;"> 抄表时间 </view>
|
||||
<view class="th" style="width: 35%; text-align: center;"> 抄表读数 </view>
|
||||
<view class="th" style="width: 25%; text-align: center;"> 操作 </view>
|
||||
<view class="th" style="width: 30%; text-align: center;"> 抄表读数 </view>
|
||||
<view class="th" style="width: 30%; text-align: center;"> 操作 </view>
|
||||
</view>
|
||||
<view class="tbody">
|
||||
<view wx:for="{{list}}" wx:for-index="itemIndex" wx:key="item">
|
||||
@@ -23,13 +23,14 @@
|
||||
<view class="th" style="width: 40%; text-align: center; font-size: 30rpx;">
|
||||
{{ item.readAt }}
|
||||
</view>
|
||||
<view class="th" style="width: 35%; text-align: center; font-size: 30rpx;">
|
||||
<view class="th" style="width: 30%; text-align: center; font-size: 30rpx;">
|
||||
{{ item.overall }}
|
||||
</view>
|
||||
|
||||
<view class="th" style="width: 25%; text-align: center; justify-content: center; display: flex; align-items: center;">
|
||||
<view class="th" style="width: 30%; text-align: center; justify-content: center; display: flex; align-items: center;">
|
||||
<van-icon wx:if="{{item.isDelete && disabled !== 'true'}}" name="edit" size="40rpx" bind:tap="handleUpdate" data-data="{{item}}" color="#15755e" />
|
||||
<van-icon wx:if="{{item.isDelete && disabled !== 'true'}}" name="delete" size="40rpx" bind:tap="handleDelete" data-data="{{item}}" color="#15755e" custom-style="margin-left: 20rpx" />
|
||||
<van-icon name="ellipsis" size="40rpx" data-data="{{item}}" color="#15755e" bind:tap="handleDetail" custom-style="margin-left: 20rpx" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -58,4 +59,9 @@
|
||||
bind:ok="onEditFinish"
|
||||
startTime="{{startTime}}"
|
||||
routeId="{{routeId}}"
|
||||
/>
|
||||
|
||||
<detailModal
|
||||
visible="{{detailVisible}}"
|
||||
detail="{{detail}}"
|
||||
/>
|
||||
Reference in New Issue
Block a user