12345678910111213141516171819202122232425262728293031323334 |
- <!--pages/pushArticle/pushArticle.wxml-->
- <view class="input-view">
- <textarea value="{{content}}" placeholder="此刻,表达一下你的看法" bindinput="getbindinput"></textarea>
- </view>
- <view class="img-box">
- <view class="img-view" wx:for="{{imgList}}" wx:key="index">
- <image src="{{item}}"></image>
- <image src="/static/img/close5.png" bindtap="delFun" data-idx="{{index}}"></image>
- </view>
- <view hidden="{{imgList.length>=9}}" class="img-upload" bindtap="uploadImg">
- <image src="/static/img/addArticle.png"></image>
- </view>
- </view>
- <view class="tag-box" bindtap="addTags">
- <image src="/static/img/topic.png"></image>
- <text>添加标签</text>
- <text>与更多人分享</text>
- <image src="/static/img/arrow.png"></image>
- </view>
- <view class="tags-list">
- <text wx:for="{{selectedTagList}}" wx:key="index">#{{item.contTagName}}</text>
- </view>
- <!-- <view class="tag-box">
- <image src="/static/img/lock.png"></image>
- <text>匿名发布</text>
- <switch color="#FF5700" checked="{{switch1Checked}}" bindchange="switch1Change"/>
- </view> -->
- <view class="submit-view">
- <text bindtap="pushContent">发布</text>
- </view>
|