article.vue
1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<template>
<LayoutApp :show-back="false" :hideHeader="hideHeader" :no-safe-area="true">
<ClientOnly>
<waterFallList
:listData="articleList"
:listInfo="listInfo"
:item-w="344" :gutter-w="18"
:isLoading="isFetchingArticleList"
@load-more="loadMore"
>
</waterFallList>
</ClientOnly>
</LayoutApp>
</template>
<script>
import LayoutApp from '../../components/layout/layout-app';
import {createNamespacedHelpers} from 'vuex';
import waterFallList from './components/waterfall';
const {mapActions, mapState} = createNamespacedHelpers('article/articleList');
export default {
name: 'articleList',
components: {
LayoutApp,
waterFallList
},
props: ['hideHeader'],
data() {
return {
listData: [],
};
},
mounted() {
},
activated() {
},
computed: {
...mapState(['articleList', 'articleListInfo', 'isFetchingArticleList']),
listInfo() { // 列表基础信息
if (this.articleListInfo) {
console.log(this.articleListInfo);
return {
lastedTime: this.articleListInfo.lastedTime,
pageNo: this.articleListInfo.pageNo || 1,
pageSize: this.articleListInfo.pageSize || 20,
totalCount: this.articleListInfo.totalCount || 0,
totalPage: this.articleListInfo.totalPage || 1
};
}
}
},
asyncData({store}) {
return store.dispatch('article/articleList/fetchArticleList', {
page: 1,
limit: 20
});
},
methods: {
...mapActions(['fetchArticleList']),
loadMore() {
if (this.articleListInfo.pageNo < this.articleListInfo.totalPage && !this.isFetchingArticleList) {
console.log('loadMore');
this.fetchArticleList({
page: this.articleListInfo.pageNo + 1,
limit: 20,
lastedTime: this.articleListInfo.lastedTime
});
}
}
},
};
</script>
<style lang="scss" scoped>
</style>