|
@@ -7,7 +7,7 @@
|
|
|
<image src="../../static/img/anchor9.png" mode="" class="money_bg"></image>
|
|
|
<view class="money">
|
|
|
<text>共</text>
|
|
|
- {{ all.all || 0 }}
|
|
|
+ {{ all || 0 }}
|
|
|
<text>人</text>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -35,7 +35,7 @@
|
|
|
<view class="title-avatar"><image :src="item.avatar || '/static/error/missing-face.png'"></image></view>
|
|
|
<view class="list_tpl">
|
|
|
<view class="title">
|
|
|
- <text>{{ item.mobile || item.email }}</text>
|
|
|
+ <text>{{ item.nickname }}</text>
|
|
|
</view>
|
|
|
<view class="time">
|
|
|
<text>{{ item.time }}</text>
|
|
@@ -103,9 +103,7 @@ export default {
|
|
|
}
|
|
|
obj.loadingType == 'loading';
|
|
|
spread({ limit: obj.limit, page: obj.page }).then(({ data }) => {
|
|
|
- data.list.forEach(e => {
|
|
|
- e.time = getTime(e.createtime);
|
|
|
- });
|
|
|
+ console.log(data,'123456')
|
|
|
obj.all = data.total;
|
|
|
obj.list = obj.list.concat(data.list);
|
|
|
obj.page++;
|