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.
|
|
|
|
|
<view class="index">
|
|
|
<view class="header"></view>
|
|
|
<view class="content">
|
|
|
<view class="title">浏览记录</view>
|
|
|
<view class="layout" >
|
|
|
<view wx:if="{{list.length>0}}">
|
|
|
<view class="picimg" wx:for="{{list}}" wx:key="index" >
|
|
|
<view class="first">{{index+1}}</view>
|
|
|
<view class="avatar">
|
|
|
<image src="{{item.avatar}}"></image>
|
|
|
</view>
|
|
|
<view class="userdetails">
|
|
|
<view class="userName">{{item.nickname}}</view>
|
|
|
<view class="time">浏览时间:{{item.time}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="margin-top:20rpx;" wx:else>暂无数据</view>
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
<button class="zixun" open-type='contact' >
|
|
|
<image src="../img/zixun.png"></image>
|
|
|
</button>
|
|
|
</view>
|
|
|
|