20 lines
885 B
Plaintext

<!--pages/user/session-list/index.wxml-->
<view class="main">
<view class="top-title">查询记录</view>
<view class="top-content">您已通过该软件查询物品{{page.total}}次</view>
<view class="history-list">
<view class="history-item" wx:for="{{sessionDataList}}" wx:key="index" wx:for-item="item" data-session="{{item.id}}" bindtap="onGoSession">
<view class="history-left">
<t-avatar t-class="history-avatar" image="{{item.images[0]}}" />
<view class="history-content">
<view class="history-title">{{item.createTime}}</view>
<view class="history-text">{{item.additive}}</view>
</view>
</view>
<view class="history-right">
<t-icon color="rgb(255, 191, 52)" name="star-filled" size="48rpx" data-name="star-filled" />
<view>{{item.rate}}</view>
</view>
</view>
</view>
</view>