yuminge-app/yun-min-program-plugin-master/packageE/others/log/log.wxml

36 lines
1.3 KiB
Plaintext

<!--packageE/others/log/log.wxml-->
<view id="skin_log">
<c-title :hide="false" :text="'测肤记录'"></c-title>
<view class="member-info">
<view style="width:100%;text-align:center;">
<image src="{{member.avatar}}" alt="" class="avator" />
</view>
<view class="name">{{member.nickname}}</view>
<view class="num-box">
<view>
<view class="num">{{last.composite_score || '——'}}</view>
<view class="num-text">最近颜值评分</view>
</view>
<view>
<view class="num">{{higher.composite_score || '——'}}</view>
<view class="num-text">颜值巅峰</view>
</view>
</view>
</view>
<view class="log-list">
<view class="list-child" wx:for="{{log}}" wx:key="index" data-id="{{item.id}}" catchtap="goreport">
<image src="{{item.check_img_src}}" alt="" class="avator" />
<view class="child-main">
<view class="time">{{item.created_at}}</view>
<view class="status">已完成</view>
</view>
<view class="del-icon">
<icon class="iconfont icon-ht_operation_delete" catchtap='del' data-id="{{item}}"></icon>
</view>
</view>
</view>
<view wx:if="{{log.length == 0}}" style="font-size: 28rpx;color: #666666;text-align: center;padding: 30rpx 0;">暂无记录哦~</view>
</view>
<kFoot exshow="{{true}}" wx:if="{{kFootshow}}"></kFoot>
<shopfoot bindtabrshow="tabrshowbtn"></shopfoot>