1234567891011121314151617181920212223242526272829303132333435 |
- <view class="greetingBox">
- <view class="template" wx:for="{{5}}" wx:key="index">
- <view class="header">
- <view class="left">
- <view class="title">模版名字</view>
- <view class="time">2022-11-03 11:01</view>
- </view>
- <view class="right" wx:if="{{isMy}}">
- <image src="/static/index/delete.png" class="delete" />
- <view class="text">删除</view>
- </view>
- </view>
- <view class="body">
- <image src="/static/image/play-btn.png" class="playBtn" />
- </view>
- <view class="footer">
- <view class="countBox">
- <view class="box">
- <image src="/static/image/play.png" class="icon" />
- <view class="num">12312</view>
- </view>
- <view class="box">
- <image src="/static/image/red_like_empty.png" class="icon" />
- <view class="num">0</view>
- </view>
- </view>
- <view class="handle" style="justify-content:{{isMy?'center':'space-between'}}">
- <image src="http://reader-wx.ai160.com/images/reader/card/send_blessings.png" class="btn"
- wx:if="{{isMy}}" />
- <image src="http://reader-wx.ai160.com/images/reader/card/show_off.png" class="btn" wx:if="{{!isMy}}" />
- <image src="http://reader-wx.ai160.com/images/reader/card/wyyw.png" class="btn" wx:if="{{!isMy}}" />
- </view>
- </view>
- </view>
- </view>
|