44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
|
<!--pages/c-dispatch/c-dispatch.wxml-->
|
||
|
<t-navbar title="派工" leftIcon="chevron-left" t-class-left-icon="left-icon-back" t-class-title="nav-title" />
|
||
|
<view class="container">
|
||
|
<view class="t-list"></view>
|
||
|
<view class="c-list">
|
||
|
<text class="c-list-head">派工信息填写</text>
|
||
|
<view class="c-item">
|
||
|
<text>处理人</text>
|
||
|
<view class="c-r-item">
|
||
|
<t-dropdown-menu>
|
||
|
<t-dropdown-item
|
||
|
label="{{label}}"
|
||
|
options="{{singleSelect.options}}"
|
||
|
value="{{singleSelect.value}}"
|
||
|
keys="{{keys}}"
|
||
|
bindchange="handleSingleSelect"
|
||
|
/>
|
||
|
</t-dropdown-menu>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="c-item">
|
||
|
<text>完成时间</text>
|
||
|
<view class="c-r-item">
|
||
|
<t-date-time-picker
|
||
|
title="选择日期和时间"
|
||
|
visible="{{datetimeVisible}}"
|
||
|
mode="minute"
|
||
|
value="{{datetime}}"
|
||
|
format="YYYY-MM-DD HH:mm:ss"
|
||
|
bindchange="onConfirm"
|
||
|
bindpick="onColumnChange"
|
||
|
bindcancel="hidePicker"
|
||
|
/>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="text-item">
|
||
|
<text>任务内容</text>
|
||
|
<t-textarea bind:change="getContent" placeholder="请输入文字" maxlength="200" indicator />
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="foot">
|
||
|
<t-button theme="primary" size="large" bindtap="dispatch">派 工</t-button>
|
||
|
</view>
|
||
|
</view>
|