forked from lsl/xzjl-ui
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.
35 lines
1.2 KiB
35 lines
1.2 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">
|
|
<view class="item-left">
|
|
<image src="{{item.isSelf ? myAvatar : loveAvatar}}" />
|
|
</view>
|
|
</view>
|
|
<view class="item-text">
|
|
<view class="item-text-name">{{item.isSelf ? myNick : loveNick}}</view>
|
|
<view class="item-text-time"> {{item.createdAt}} </view>
|
|
</view>
|
|
<view class="item-right" data-id="{{item.id}}" bindtap="getMsgDetail">
|
|
</view>
|
|
</view>
|
|
<view slot="right" data-item="{{item}}" class="delete-btn" bindtap="delLetter">删除</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> |