471615499@qq.com b4417bee7b 20240825代码提交
windows下部分内容与mac不一致,全量提交;
功能改动:
- 去掉“我的报修”页面的“报修名称”、“故障等级”、“故障时间”三个字段
- 派单员页面添加“故障等级”字段,故障等级由派单员选择设置
- “我的报修”页面,“门牌号”修改为“门牌号(地点)”
- 维修人员不允许评价
- 首页加入请求“我的报修”,可以直接点击进入
- 去掉语音输入,必填描述
- 派单列表页调整
- 维修人员退回工单需要必填理由
2024-08-25 18:17:00 +08:00

63 lines
2.6 KiB
Plaintext

<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">
<view class="label">{{detail.sn}}</view>
<view class="time">{{detail.typeName + '/' + detail.deviceName}}</view>
<view class="tag">{{detail.statusName}}</view>
</view>
<view class="reportView">
<view class="topTitle">派单</view>
<view class="selfLine"></view>
<view class="itemView" bind:tap="showLevel">
<view class="label">{{form.repairLevel ? form.repairLevel : '请选择故障等级'}}</view>
<van-icon name="arrow" size="36rpx" color="gray" />
</view>
<view class="itemView" bind:tap="showUser">
<view class="label">{{form.repairUserName ? form.repairUserName : '请选择维修人员'}}</view>
<van-icon name="arrow" size="36rpx" color="gray" />
</view>
<view style="display: none" class="itemView" bind:tap="showPreDate">
<view class="label">{{form.preDate ? form.preDate : '请选择预计完成时间'}}</view>
<van-icon name="arrow" size="36rpx" color="gray" />
</view>
</view>
</view>
<view class="submitBtn" bind:tap="submit">提交</view>
</view>
<!-- 选择-故障等级 -->
<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>
<!-- 完成时间 -->
<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" />