信达小程序
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.

24 lines
1.2 KiB

<view class="page">
<view class="total">共{{total}}条日记记录</view>
<view class="history-list">
<view class="list-item" wx:for="{{recordList}}" wx:key="recordId" data-record-id="{{item.recordId}}" bind:tap="handleHistory">
<view wx:if="{{item.isBaseline === 1}}" class="benchmark" style="background: url('{{imageUrl}}bg50.png?t={{Timestamp}}') no-repeat top center/100%">
基准照
</view>
<image class="photo" src="{{item.firstPhotoUrl || imageUrl + 'icon143.png?t=' + Timestamp}}"></image>
<view class="wrap">
<view class="date">{{item.recordDate}}</view>
<view class="tag">替妥尤单抗:{{item.treatmentCount}}</view>
<view class="rotate">已上传{{item.photoCount}}个角度</view>
</view>
<image class="more" src="{{imageUrl}}icon148.png?t={{Timestamp}}"></image>
</view>
</view>
<view class="loading" wx:if="{{loading}}">加载中...</view>
<view class="no-more" wx:if="{{!hasMore && recordList.length > 0}}">没有更多了</view>
<view class="footer">
<view class="btn1" bind:tap="handleDiffData">眼突度 对比</view>
<view class="btn2" bind:tap="handlePhotoCompare">照片 对比</view>
</view>
</view>