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.
26 lines
956 B
26 lines
956 B
<!--pages/change/change.wxml-->
|
|
<!-- 用户自行修改数据的页面 -->
|
|
<view class="wall-item">
|
|
<!-- 内容 -->
|
|
<textarea class="title" bindinput="change1"placeholder="{{change1}}" decode="{{true}}" value="{{feed.title}}" style="height: 25px;"></textarea>
|
|
<textarea bindinput="change" style="white-space:pre-wrap;" value="{{feed.content}}" placeholder="{{change}}" data-aid="{{feed._id}}" class="content"></textarea>
|
|
<!--帖子的图片-->
|
|
<view class="img_box">
|
|
<view class="imgs" wx:for="{{tempFilePaths}}" wx:key="index">
|
|
<image src='{{item}}' bindlongpress="DeleteImg" bindtap="listenerButtonPreviewImage" data-index="{{index}}" mode='widthFix' />
|
|
</view>
|
|
<view class="imgs" wx:if="{{feed.url.length<3}}">
|
|
<view class="images" bindtap="chooseImage">
|
|
<image src='../../images/upload.png' mode='widthFix' />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 确认修改 -->
|
|
<button class="publish" bindtap="sure">确认修改</button>
|