<!--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">
|
{{selectDate}} >
|
</view>
|
</view>
|
<view>
|
<view>故障描述</view>
|
<van-field class="info"
|
value="{{ message }}"
|
label=""
|
type="textarea"
|
placeholder="请输入设备故障的基本描述"
|
autosize
|
|
/>
|
<!-- <van-field value="{{info }}" type="textarea" placeholder="" border style="margin-top: 10px;" /> -->
|
|
</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 }}" bind:change="onChangeType" />
|
</van-popup>
|
|
<van-popup show="{{ showDate }}" position="bottom" custom-style="height: 40%;" bind:close="onClose">
|
<van-datetime-picker type="year-month-time" value="{{ currentDate }}" bind:confirm="onInput" bind:change="onChangeDate" min-date="{{ minDate }}" formatter="{{ formatter }}" />
|
</van-popup>
|