mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 06:39:37 +08:00
57 lines
2.1 KiB
Plaintext
57 lines
2.1 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="itemLineView">
|
|
<view class="label">反馈人员</view>
|
|
<view class="content">{{currentLog.recUserName}}</view>
|
|
</view>
|
|
<view class="itemLineView">
|
|
<view class="label">反馈描述</view>
|
|
<view class="content">{{currentLog.content}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="reportView">
|
|
<view class="topTitle">故障类型</view>
|
|
<view class="selfLine"></view>
|
|
<view class="itemLineCenterView" bind:tap="showType">
|
|
<view class="label">{{ typeName ? typeName + '/' + deviceName : '请选择故障类型' }}</view>
|
|
<van-icon name="arrow" color="gray" size="34rpx" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="tijiaoBtn" bind:tap="submit">提交</view>
|
|
</view>
|
|
|
|
|
|
<!-- 故障类型 -->
|
|
<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" /> |