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.
14 lines
663 B
14 lines
663 B
<!--pages/topics/interactive/submitTopic/index.wxml-->
|
|
<view class="container">
|
|
<input class="title" value="{{topicTitle}}" bindinput="bindTextInput" placeholder="议题"></input>
|
|
<view class="line-view"></view>
|
|
<textarea class="textArea" value="{{topicDetail}}" bindinput="bindTextAreaInput" placeholder="详情内容" />
|
|
<mp-cells ext-class="uploader_bd">
|
|
<mp-cell>
|
|
<mp-uploader ext-class="myUploader" binddelete="deleteFile" upload="{{uplaodFile}}" files="{{files}}" max-count="9" delete="true"></mp-uploader>
|
|
</mp-cell>
|
|
</mp-cells>
|
|
<view class="btnView">
|
|
<e-ibutton title="提交" bind:onTap="submit"/>
|
|
</view>
|
|
</view>
|
|
|