This commit is contained in:
2020-07-01 17:32:36 +08:00
parent dc69746320
commit dc72f79ee8
24 changed files with 268 additions and 127 deletions

View File

@@ -1,18 +1,15 @@
<template>
<view class="follow">
<view class="sosuo">
<image></image>
<view class="sosuo" @click="searchValue">
<image src="/static/image/common/10.png"></image>
<text>输入达人名称</text>
</view>
<view class="list">
<darenItem style="margin-top:20rpx;margin-right:23rpx" v-for="item in 50"></darenItem>
<darenItem style="margin-top:20rpx;margin-right:23rpx" v-for="item in recommendList" :key="item.id" :info="item"></darenItem>
</view>
</view>
</template>
<style lang="scss" scoped>
image{
background-color: #0f0;
}
.follow{
background-color: #ECECEC;
min-height: calc(100vh - var(--window-top));
@@ -53,8 +50,25 @@ export default {
},
data(){
return{
recommendList: [], // 推荐达人
}
}
},
onShow() {
this.getRecommendList();
},
methods: {
getRecommendList() {
this.$u.api.getRecommendList().then(res => {
if(res.errCode == 0) {
this.recommendList = res.data.list;
}
})
},
searchValue() {
uni.navigateTo({
url: '/pageB/search/index'
})
},
},
}
</script>

View File

@@ -55,7 +55,7 @@ export default {
}
this.list.push(temp);
})
console.log(this.goodsInfo.mobile_body);
// console.log(this.goodsInfo.mobile_body);
}
})