达人列表 8.15
This commit is contained in:
parent
e427748a79
commit
97676d75fb
@ -54,6 +54,10 @@ export default {
|
|||||||
getRecommendList(){
|
getRecommendList(){
|
||||||
return vm.$u.post('MemberExpert/recommendList');
|
return vm.$u.post('MemberExpert/recommendList');
|
||||||
},
|
},
|
||||||
|
// 获取所有达人
|
||||||
|
getAllRecommendList({ page }) {
|
||||||
|
return vm.$u.post('MemberExpert/getRecommendList', { page });
|
||||||
|
},
|
||||||
// 达人(搜索)列表
|
// 达人(搜索)列表
|
||||||
getExpertList({ page, store_id, live_status, like_nickname }){
|
getExpertList({ page, store_id, live_status, like_nickname }){
|
||||||
return vm.$u.post('MemberExpert/expertList', {
|
return vm.$u.post('MemberExpert/expertList', {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="follow">
|
<view class="follow">
|
||||||
|
<scroll-view scroll-y :style="{ height: viewHeight }" @scrolltolower="loadmore" class="container">
|
||||||
<view class="sosuo" @click="searchValue">
|
<view class="sosuo" @click="searchValue">
|
||||||
<image src="/static/image/common/10.png"></image>
|
<image src="/static/image/common/10.png"></image>
|
||||||
<text>输入达人名称</text>
|
<text>输入达人名称</text>
|
||||||
@ -7,12 +8,16 @@
|
|||||||
<view class="list" style="margin-left:-20rpx">
|
<view class="list" style="margin-left:-20rpx">
|
||||||
<darenItem style="margin-top:20rpx;margin-left:20rpx;" v-for="item in recommendList" :key="item.id" :info="item" v-on:pChangeType="changeType"></darenItem>
|
<darenItem style="margin-top:20rpx;margin-left:20rpx;" v-for="item in recommendList" :key="item.id" :info="item" v-on:pChangeType="changeType"></darenItem>
|
||||||
</view>
|
</view>
|
||||||
|
<u-loadmore :status="loadStatus" bgColor="#ECECEC" font-size="14" margin-top="40" margin-bottom="20" v-if="recommendList.length > pageSize" @loadmore="loadmore"></u-loadmore>
|
||||||
|
</scroll-view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.follow{
|
.follow{
|
||||||
background-color: #ECECEC;
|
background-color: #ECECEC;
|
||||||
min-height: calc(100vh - var(--window-top));
|
min-height: calc(100vh - var(--window-top));
|
||||||
|
.container {
|
||||||
|
box-sizing: border-box;
|
||||||
padding: 20rpx 30rpx;
|
padding: 20rpx 30rpx;
|
||||||
.sosuo{
|
.sosuo{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -39,6 +44,7 @@
|
|||||||
margin-right: -23rpx;
|
margin-right: -23rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
import darenItem from "@/components/index/daren-item/index"
|
import darenItem from "@/components/index/daren-item/index"
|
||||||
@ -50,22 +56,45 @@ export default {
|
|||||||
},
|
},
|
||||||
data(){
|
data(){
|
||||||
return{
|
return{
|
||||||
|
pageSize: 2,
|
||||||
recommendList: [], // 推荐达人
|
recommendList: [], // 推荐达人
|
||||||
|
page: 1,
|
||||||
|
loadStatus: 'loadmore',
|
||||||
|
timer: true,
|
||||||
|
viewHeight: '',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onLoad() {
|
||||||
|
this.setViewHeight();
|
||||||
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
this.getRecommendList();
|
this.getRecommendList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getRecommendList() {
|
async getRecommendList({ load = 'reload' } = {}) {
|
||||||
this.$u.api.getRecommendList().then(res => {
|
const res = await this.$u.api.getAllRecommendList({ page: this.page });
|
||||||
|
this.timer = true;
|
||||||
if(res.errCode == 0) {
|
if(res.errCode == 0) {
|
||||||
this.recommendList = res.data.list;
|
if(load == 'reload') this.recommendList = res.data.list;
|
||||||
|
if(load == 'loadmore') this.recommendList.push(...res.data.list);
|
||||||
}
|
}
|
||||||
|
return res.data.list.length;
|
||||||
|
},
|
||||||
|
loadmore() {
|
||||||
|
if(!this.timer) return false;
|
||||||
|
this.timer = false;
|
||||||
|
this.loadStatus = "loading";
|
||||||
|
this.page++;
|
||||||
|
this.getRecommendList({ load: "loadmore" }).then(length => {
|
||||||
|
this.loadStatus = "nomore";
|
||||||
|
if(length == 0) this.page--;
|
||||||
|
}).catch(() => {
|
||||||
|
this.loadStatus = "nomore";
|
||||||
|
this.page--;
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
changeType(member_id){
|
changeType(member_id){
|
||||||
console.log(member_id);
|
// console.log(member_id);
|
||||||
this.$emit("pChangeType")
|
this.$emit("pChangeType")
|
||||||
this.$u.api.attentionMember({
|
this.$u.api.attentionMember({
|
||||||
member_id: member_id
|
member_id: member_id
|
||||||
@ -79,6 +108,10 @@ export default {
|
|||||||
url: '/pageB/search/index?type=2&curent=1'
|
url: '/pageB/search/index?type=2&curent=1'
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
setViewHeight() {
|
||||||
|
const res = uni.getSystemInfoSync();
|
||||||
|
this.viewHeight = res.windowHeight + 'px';
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
Loading…
Reference in New Issue
Block a user