123456789101112131415161718192021222324252627282930313233 |
- <view class="head">
- <view class="count">
- <text wx:if="{{language['总共']}}">{{language['总共']}}:{{content.total}}</text>
- <text wx:else>总共{{content.total}}个</text>
- </view>
- </view>
- <navigator class="record-box" url="#" wx:for="{{list}}" wx:key="actionuserid">
- <view class="item">
- <view class="head">
- <view class="portrait">
- <van-image wx:if="{{item.headpic}}" width="100%" height="100%" src="{{item.headpic}}" use-loading-slot lazy-load>
- <van-loading slot="loading" type="spinner" size="20" vertical />
- </van-image>
- <view class="replace" wx:else>
- {{item.actionby[0]}}
- </view>
- </view>
- <view class="introduce">
- <view class="title">
- <view class="line-1">{{item.actionby}}</view>
- <text>{{language[item.action]||item.action}}</text>
- </view>
- <view class="time">
- {{item.actiondate}}
- </view>
- </view>
- </view>
- <view class="remarks" wx:if="{{item.remarks}}">
- {{language[item.remarks]||item.remarks}}
- </view>
- </view>
- </navigator>
- <Yl_Empty wx:if="{{list.length==0}}" />
|