parent
dc8ab695c5
commit
3b82cb9c2f
@ -1,25 +1,29 @@
|
|||||||
<view class="container">
|
<view class="container">
|
||||||
<view>
|
<form bindsubmit="submit">
|
||||||
|
|
||||||
<view class="form-group">
|
<view class="form-group">
|
||||||
<text>任务标题:</text>
|
<text>任务标题:</text>
|
||||||
<input type="text" placeholder="请输入任务标题" />
|
<input type="text" name="title" placeholder="请输入任务标题" />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="form-group">
|
<view class="form-group">
|
||||||
<text>任务内容:</text>
|
<text>任务内容:</text>
|
||||||
<textarea placeholder="请输入任务内容"></textarea>
|
<textarea name="details" placeholder="请输入任务内容"></textarea>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="form-group">
|
<view class="form-group">
|
||||||
<text>截止时间:</text>
|
<text>截止时间:</text>
|
||||||
<input type="datetime-local" />
|
<input name="deadLine" type="datetime-local" />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="form-group">
|
<view class="form-group">
|
||||||
<text>附件:</text>
|
<text>附件:</text>
|
||||||
<button class="btn-attachment">上传附件</button>
|
<button class="btn-attachment">上传附件</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
|
||||||
<button class="btn-submit">提交</button>
|
|
||||||
|
<button form-type="submit" class="btn-submit">提交</button>
|
||||||
|
|
||||||
|
</form>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
Loading…
Reference in new issue