<!--pages/repairTicketDetail/repairTicketDetail.wxml-->
|
<!-- <text>pages/repairTicketDetail/repairTicketDetail.wxml</text> -->
|
<!-- <van-cell-group>
|
<van-field
|
value="{{ username }}"
|
clearable
|
label="设备名称"
|
icon="question-o"
|
placeholder="请输入用户名"
|
|
/>
|
|
<van-field
|
value="{{ password }}"
|
type="password"
|
label="密码"
|
placeholder="请输入密码"
|
required
|
border="{{ false }}"
|
/>
|
</van-cell-group> -->
|
<view class="main">
|
<view class="item">
|
<view class="left">
|
设备名称
|
</view>
|
<view class="right">
|
设备1号
|
</view>
|
</view>
|
<view class="item">
|
<view class="left">
|
故障类型
|
</view>
|
<view class="right" bind:tap="openShowType">
|
{{selectType}} >
|
</view>
|
</view>
|
<view class="item">
|
<view class="left">
|
预约时间
|
</view>
|
<view class="right" bind:tap="openShowDate">
|
|
<picker bindtap="clickSelectTime" mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArray}}">
|
{{time}}
|
<view class="triangle_border_down"> </view>
|
</picker>
|
|
</view>
|
</view>
|
<view style="display: flex;justify-content: space-between;">
|
<view style="margin-left: 5px;">故障描述</view>
|
<view style="width: calc(100% - 80px);">
|
<van-field class="info" style="min-height: 200px;" value="{{ message }}" label="" type="textarea" placeholder="请输入设备故障的基本描述" autosize />
|
</view>
|
</view>
|
<view style="width: 90%;margin-left: 5%;height: 40px;line-height: 40px;background-color: #007CFE;text-align: center;color: #fff;margin-top: 10px;">提交报修单</view>
|
</view>
|
<van-popup show="{{ showType }}" position="bottom" custom-style="height: 40%;" bind:close="onClose">
|
<van-picker columns="{{ columns }}" show-toolbar bind:cancel="closeType" bind:confirm="onChangeType" />
|
</van-popup>
|
|
<!-- <van-popup show="{{ showDate }}" position="bottom" custom-style="height: 40%;" bind:close="onClose"> -->
|
<!-- <picker-date bind:pConfirm='pConfirm'></picker-date> -->
|
|
|
|
|
|
|
<!-- </van-popup> -->
|