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.
44 lines
703 B
44 lines
703 B
<template>
|
|
<view class="mall_my_evaluate_list_page">
|
|
<view class="page_content">
|
|
<view class="list-box">
|
|
<jc-member-myEvaluateList :load_status="load_status" :list="list"></jc-member-myEvaluateList>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
load_status: '', //加载状态
|
|
list: [], //推荐商品列表
|
|
}
|
|
},
|
|
|
|
onReady() {
|
|
this.loadList(1);
|
|
},
|
|
|
|
onReachBottom() {
|
|
this.loadList(2);
|
|
},
|
|
|
|
methods: {
|
|
loadList(first_page) {
|
|
this.rq.getList('fire/api/Fire/getMyReviewList', {}, {
|
|
that: this,
|
|
first_page
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.page_content {
|
|
padding-bottom: 20rpx;
|
|
}
|
|
</style>
|