2024-07-30 16:33:21 +08:00
|
|
|
<view class="containerView public">
|
|
|
|
|
|
|
|
<view class="topHead">
|
|
|
|
<view class="navigatorView">
|
|
|
|
<view class="backView" bind:tap="back">
|
|
|
|
<van-icon name="arrow-left" color="#ffffff" size="30rpx" />
|
|
|
|
<view class="label">返回</view>
|
|
|
|
</view>
|
|
|
|
<view class="title">确认损坏</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="contentView">
|
|
|
|
<view class="label1">派单处理</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="mainView">
|
|
|
|
<view class="statusView">
|
2024-08-14 16:27:51 +08:00
|
|
|
<view class="label">{{detail.sn}}</view>
|
|
|
|
<view class="time">{{detail.typeName + '/' + detail.deviceName}}</view>
|
|
|
|
<view class="tag">{{detail.statusName}}</view>
|
2024-07-30 16:33:21 +08:00
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="reportView">
|
|
|
|
<view class="topTitle">派单</view>
|
|
|
|
<view class="selfLine"></view>
|
2024-08-25 18:17:00 +08:00
|
|
|
<view class="itemView" bind:tap="showLevel">
|
|
|
|
<view class="label">{{form.repairLevel ? form.repairLevel : '请选择故障等级'}}</view>
|
|
|
|
<van-icon name="arrow" size="36rpx" color="gray" />
|
|
|
|
</view>
|
2024-08-14 16:27:51 +08:00
|
|
|
<view class="itemView" bind:tap="showUser">
|
|
|
|
<view class="label">{{form.repairUserName ? form.repairUserName : '请选择维修人员'}}</view>
|
2024-07-30 16:33:21 +08:00
|
|
|
<van-icon name="arrow" size="36rpx" color="gray" />
|
|
|
|
</view>
|
2024-08-25 18:17:00 +08:00
|
|
|
<view style="display: none" class="itemView" bind:tap="showPreDate">
|
2024-08-14 16:27:51 +08:00
|
|
|
<view class="label">{{form.preDate ? form.preDate : '请选择预计完成时间'}}</view>
|
2024-07-30 16:33:21 +08:00
|
|
|
<van-icon name="arrow" size="36rpx" color="gray" />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
2024-08-14 16:27:51 +08:00
|
|
|
<view class="submitBtn" bind:tap="submit">提交</view>
|
2024-07-30 16:33:21 +08:00
|
|
|
|
2024-08-14 16:27:51 +08:00
|
|
|
</view>
|
2024-07-30 16:33:21 +08:00
|
|
|
|
2024-08-25 18:17:00 +08:00
|
|
|
<!-- 选择-故障等级 -->
|
|
|
|
<van-popup show="{{ levelVisible }}" position="bottom" custom-style="height: 50vh;" bind:close="hideLevel">
|
|
|
|
<van-picker show-toolbar columns="{{ levelColumns }}" bind:confirm="levelConfirm" bind:cancel="hideLevel"/>
|
|
|
|
</van-popup>
|
|
|
|
|
2024-08-14 16:27:51 +08:00
|
|
|
<!-- 完成时间 -->
|
|
|
|
<van-popup show="{{ preDateVisible }}" position="bottom" custom-style="height: 50vh;" bind:close="hidePreDate">
|
|
|
|
<van-datetime-picker type="datetime" value="{{ preDateTime }}" bind:confirm="confirmPreDate" bind:cancel="hidePreDate" />
|
|
|
|
</van-popup>
|
|
|
|
|
|
|
|
<!-- 维修人员 -->
|
|
|
|
<van-popup show="{{ userVisible }}" position="bottom" custom-style="height: 50vh;" bind:close="hideUser">
|
|
|
|
<van-picker show-toolbar columns="{{ userColumns }}" bind:confirm="userColumnsConfirm" bind:cancel="hideUser"/>
|
|
|
|
</van-popup>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 消息通知 -->
|
|
|
|
<van-notify id="van-notify" />
|