市北人才赋能平台 --小程序端
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.

23 lines
869 B

6 years ago
<!--pages/topics/interactive/submitTopic/index.wxml-->
<view class="container">
<view class="item">
<view class="must_fill">*</view>
<input class="title" maxlength="95" value="{{topicTitle}}" bindinput="bindTextInput" placeholder="议题标题"></input>
</view>
<view class="line-view"></view>
<view class="item">
<view class="must_fill">*</view>
<textarea class="textArea" maxlength="1000" value="{{topicDetail}}" bindinput="bindTextAreaInput" placeholder="议题内容" />
</view>
6 years ago
<mp-cells ext-class="uploader_bd">
<mp-cell>
6 years ago
<mp-uploader ext-class="myUploader" binddelete="deleteFile" upload="{{uplaodFile}}" files="{{files}}" max-count="9" delete="true"></mp-uploader>
6 years ago
</mp-cell>
</mp-cells>
6 years ago
<view class="btnView">
6 years ago
<e-ibutton title="提交" bind:onTap="submit"/>
6 years ago
</view>
</view>