工单详情增加部分字段,装表新增采集器,修改工单列表查询的问题
This commit is contained in:
@@ -36,6 +36,39 @@
|
||||
<view wx:else> - </view>
|
||||
</view>
|
||||
</van-field>
|
||||
<van-field
|
||||
value="{{ detail.created_at || '-' }}"
|
||||
label="发起时间"
|
||||
readonly
|
||||
title-width="132rpx"
|
||||
/>
|
||||
<van-field
|
||||
value="{{ detail.created_name || '-' }}"
|
||||
label="发起人"
|
||||
readonly
|
||||
title-width="132rpx"
|
||||
/>
|
||||
<van-field
|
||||
value="{{ detail.target.meter_data.meter_sn || '-' }}"
|
||||
label="电表编号"
|
||||
readonly
|
||||
title-width="132rpx"
|
||||
/>
|
||||
<van-field
|
||||
value="{{ detail.reason || '-' }}"
|
||||
label="批注"
|
||||
readonly
|
||||
title-width="132rpx"
|
||||
/>
|
||||
<van-field
|
||||
value="{{ detail.current_user_audit_status === 0 ? '未确认' : '已确认' }}"
|
||||
label="工单状态"
|
||||
readonly
|
||||
title-width="132rpx"
|
||||
/>
|
||||
<view style="margin: 20rpx;">
|
||||
<custom-table header="{{header}}" list="{{detail.notifier}}" />
|
||||
</view>
|
||||
<view class="wrapper">
|
||||
<view class="operate">
|
||||
<view class="submit" wx:if="{{detail.current_user_audit_status === 0}}"> <van-button type="info" block bind:click="onSubmit"> 确认 </van-button> </view>
|
||||
|
||||
Reference in New Issue
Block a user