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.
44 lines
1.6 KiB
44 lines
1.6 KiB
<!--pages/home/xx/hy/index.wxml-->
|
|
<!--返回图标-->
|
|
<view class="header">
|
|
<view class="reback" bindtap="go2Reback"></view>
|
|
<view class="title">纸条</view>
|
|
</view>
|
|
|
|
<!-- 中间主体 -->
|
|
<view class="main">
|
|
<view class="main-bgc" />
|
|
<t-swipe-cell wx:for="{{ list }}" wx:key="index">
|
|
<view class="main-item">
|
|
<view class="item-left">
|
|
<image src="{{item.isSelf ? userInfo.avatar : avatar}}" />
|
|
</view>
|
|
<view class="item-text">
|
|
<view class="item-text-name">{{ item.isSelf ? userInfo.nick : nick}}</view>
|
|
<view class="item-text-time"> {{ item.createdAt }} </view>
|
|
</view>
|
|
<view class="item-right" bindtap="readingNote" data-content="{{item.content}}">
|
|
{{item.content}}
|
|
</view>
|
|
</view>
|
|
<view slot="right" class="delete-btn" bindtap="delLetter" data-item="{{item}}">删除</view>
|
|
</t-swipe-cell>
|
|
</view>
|
|
|
|
<!--星讯聊天下方菜单栏-->
|
|
<view class="xfgjl" >
|
|
<view class="xxqlcd xxqlcd1" bindtap="go2Xz">信札</view>
|
|
<view class="xxqlcd xxqlcd2" bindtap="go2Yx">音讯</view>
|
|
<view class="xxqlcd xxqlcd3" bindtap="go2Hx">画像</view>
|
|
<view class="xxqlcd xxqlcd4" bindtap="go2Zt">纸条</view>
|
|
</view>
|
|
|
|
<!-- 打开字条 -->
|
|
<view class="reading" wx:if="{{showZt}}">
|
|
<view class="read-box">
|
|
<view class="read-text">{{msgZt}}</view>
|
|
<view class="read-btn" bindtap="closeRead">
|
|
<image src="https://wish-assets.oss-cn-hangzhou.aliyuncs.com/xy/iconPark-return%401x.png" />
|
|
</view>
|
|
</view>
|
|
</view> |