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.
18 lines
640 B
18 lines
640 B
<!--pages/opration/opration.wxml-->
|
|
<view class='container'>
|
|
<form bindsubmit='formSubmit' bindreset='formReset'>
|
|
<view class='row'>
|
|
{{}}
|
|
<text>任务名:</text>
|
|
<input type='text' name='name' placeholder='请输入任务名' value='{{areaName}}'></input>
|
|
</view>
|
|
<view class='row'>
|
|
<text>任务内容:</text>
|
|
<input type='text' name='priority' placeholder='不能为空' value='{{priority}}'></input>
|
|
</view>
|
|
<view class='row'>
|
|
<button type='primary' form-type='submit'>提交</button>
|
|
<button type='primary' form-type='reset'>清空</button>
|
|
</view>
|
|
</form>
|
|
</view> |