57 lines
2.1 KiB
Plaintext
Raw Normal View History

2024-07-30 17:43:32 +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 12:00:14 +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 17:43:32 +08:00
</view>
<view class="reportView">
2024-08-14 15:12:02 +08:00
<view class="topTitle">派单反馈</view>
2024-07-30 17:43:32 +08:00
<view class="selfLine"></view>
2024-07-31 09:13:31 +08:00
<view class="itemLineView">
2024-07-30 17:43:32 +08:00
<view class="label">反馈人员</view>
2024-08-14 15:12:02 +08:00
<view class="content">{{currentLog.recUserName}}</view>
2024-07-30 17:43:32 +08:00
</view>
2024-07-31 09:13:31 +08:00
<view class="itemLineView">
2024-07-30 17:43:32 +08:00
<view class="label">反馈描述</view>
2024-08-14 15:12:02 +08:00
<view class="content">{{currentLog.content}}</view>
2024-07-30 17:43:32 +08:00
</view>
</view>
<view class="reportView">
2024-08-07 17:52:48 +08:00
<view class="topTitle">故障类型</view>
2024-07-30 17:43:32 +08:00
<view class="selfLine"></view>
2024-08-14 15:12:02 +08:00
<view class="itemLineCenterView" bind:tap="showType">
<view class="label">{{ typeName ? typeName + '/' + deviceName : '请选择故障类型' }}</view>
2024-08-14 11:44:30 +08:00
<van-icon name="arrow" color="gray" size="34rpx" />
2024-07-30 17:43:32 +08:00
</view>
</view>
</view>
2024-08-14 15:12:02 +08:00
<view class="tijiaoBtn" bind:tap="submit">提交</view>
</view>
2024-07-31 09:13:31 +08:00
2024-08-14 15:12:02 +08:00
<!-- 故障类型 -->
<van-popup show="{{ typeVisible }}" position="bottom" custom-style="height: 50vh;" bind:close="hideType">
<van-picker show-toolbar columns="{{ typeColumns }}" bind:change="typeColumnsChange" bind:confirm="typeColumnsConfirm" bind:cancel="hideType" />
</van-popup>
<!-- 在页面内添加对应的节点 -->
<van-notify id="van-notify" />