|
|
@ -14,9 +14,9 @@ |
|
|
|
</div> |
|
|
|
<div class="teamInfo"> |
|
|
|
<div class="teamName">{{item.username}}</div> |
|
|
|
<!-- <div class="teamMoney"></div> --> |
|
|
|
<div class="teamNum" v-if="id"></div> |
|
|
|
<div class="teamMoney">注册时间:{{item.created_at |time}}</div> |
|
|
|
<div class="teamNum">团队人数:{{item.team_num}}</div> |
|
|
|
<div class="teamNum" v-if="!id">团队人数:{{item.team_num}}</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</van-list> |
|
|
@ -83,7 +83,13 @@ |
|
|
|
user_id: this.id, |
|
|
|
page: ++this.list.curPage, |
|
|
|
}) |
|
|
|
const information = res.data.data |
|
|
|
let information |
|
|
|
if (this.$route.query.id) { |
|
|
|
information = res.data |
|
|
|
} else { |
|
|
|
information = res.data.data |
|
|
|
} |
|
|
|
console.log(information, '222'); |
|
|
|
if (JSON.stringify(information.data) != '[]') { |
|
|
|
this.list.data.push(...information.data); |
|
|
|
this.list.totalPage = information.last_page; |
|
|
@ -100,9 +106,6 @@ |
|
|
|
this.list.finished = true; |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
addList() { |
|
|
|
|
|
|
|
}, |
|
|
|
onLoad() { |
|
|
|
var _this = this; |
|
|
@ -122,12 +125,14 @@ |
|
|
|
min-height: 100vh; |
|
|
|
background: RGBA(63, 66, 88, 1); |
|
|
|
position: relative; |
|
|
|
|
|
|
|
.empty { |
|
|
|
position: absolute; |
|
|
|
top: 20%; |
|
|
|
left: 50%; |
|
|
|
transform: translateX(-50%); |
|
|
|
} |
|
|
|
|
|
|
|
.moneyRanking { |
|
|
|
min-height: 100vh; |
|
|
|
background: RGBA(63, 66, 88, 1); |
|
|
|