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.
30 lines
964 B
30 lines
964 B
<view class="page" id="{{theme === 'DRUG' && 'drug-page'}}"> |
|
<view class="list"> |
|
<view class="card" wx:for="{{list}}" wx:key="visitDate"> |
|
<view class="aside"> |
|
<view class="line-top"></view> |
|
<view class="circle"></view> |
|
<view class="line-bottom"></view> |
|
</view> |
|
<view class="wrap"> |
|
<view class="date">{{item.visitDate}}</view> |
|
<view class="container"> |
|
<image |
|
class="photo" |
|
wx:for="{{item.images}}" |
|
wx:key="*this" |
|
wx:for-item="imgUrl" |
|
src="{{imgUrl}}" |
|
mode="aspectFill" |
|
bind:tap="handlePreviewImage" |
|
data-url="{{imgUrl}}" |
|
data-date="{{item.visitDate}}" |
|
></image> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
<pagination pagination="{{pagination}}" customEmpty emptyTitle="暂无记录"> |
|
<view class="empty-text" slot>暂无记录</view> |
|
</pagination> |
|
</view>
|
|
|