You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
857 B
20 lines
857 B
2 years ago
|
<view class="release-view">
|
||
|
<form bindsubmit='formSubmit' bindreset='formReset'>
|
||
|
<label>任务名称
|
||
|
<input type="text" data-gater="from.taskName" value="{{from.taskName}}" bindinput="inputFrom" placeholder="输入任务名称" />
|
||
|
</label>
|
||
|
<label>任务结束时间
|
||
|
<input type="number" maxlength="20" data-gater="from.end" value="{{from.end}}" bindinput="inputFrom" placeholder="输入任务结束时间" />
|
||
|
</label>
|
||
|
<label>任务详情
|
||
|
<input type="text" data-gater="from.taskdetail" value="{{from.taskdetail}}" bindinput="inputFrom" placeholder="输入任务详情" />
|
||
|
</label>
|
||
|
|
||
|
|
||
|
<view class='row'>
|
||
|
<button type='primary' form-type='submit' catchtap="addSelect">提交</button>
|
||
|
<button type='primary' form-type='reset'>清空</button>
|
||
|
</view>
|
||
|
</form>
|
||
|
</view>
|