article.vue
3.78 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<template>
<LayoutApp :show-back="false" :hideHeader="hideHeader" :no-safe-area="true">
<ClientOnly>
<waterFallList ref="waterFallList" v-if="articleList && articleList.length > 0"
:absolute="true"
:listData="articleList"
:listInfo="listInfo"
:item-w="344" :gutter-w="16"
:isLoading="isFetchingArticleList"
:yasParams="yasParams"
:yasClickOP="yasClickOP"
@load-more="loadMore"
@update-praise="updatePraise"
>
</waterFallList>
<div class="no-data-container" v-else>
<ufo-no-item :tip="`暂无数据`"></ufo-no-item>
</div>
</ClientOnly>
</LayoutApp>
</template>
<script>
import LayoutApp from '../../components/layout/layout-app';
import {createNamespacedHelpers} from 'vuex';
import waterFallList from './components/waterfall';
import UfoNoItem from '../../components/ufo-no-item';
const {mapActions, mapState} = createNamespacedHelpers('article/articleList');
export default {
name: 'articleList',
components: {
UfoNoItem,
LayoutApp,
waterFallList
},
props: ['hideHeader'],
data() {
return {
listData: [],
needLoadingData: false,
isUpdatingPraise: false, // 是否正在调用点赞接口
yasParams: {P_NAME: 'XY_UFOArticle'},
yasClickOP: 'XY_STROLL_MAIN_C'
};
},
mounted() {
},
activated() {
},
computed: {
...mapState(['articleList', 'articleListInfo', 'isFetchingArticleList']),
listInfo() { // 列表基础信息
if (this.articleListInfo) {
// console.log('computed=', this.articleListInfo, 'computedList=', this.articleList);
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
};
}
}
},
beforeRouteEnter(to, from, next) {
next(vm => {
// 判断页面来源,决定是否重新读取数据
if ((!to.name || from.name !== 'ArticleDetail') || !vm.articleList.length) {
vm.$store.dispatch('article/articleList/fetchArticleList', {
page: 1,
limit: 20,
reload: true
});
} else if (from.name === 'ArticleDetail') {
vm.$refs.waterFallList.scrollToOldPlace();
}
/*if (to.name === 'List') {
// 让页面滚回跳出时的位置
setTimeout(function() {
vm.$refs.wrapper.scrollTop = vm.scrollTop;
console.log(vm.$refs.wrapper.scrollTop);
}, 200);
}*/
});
},
methods: {
...mapActions(['fetchArticleList', 'updateArticlePraise']),
loadMore() {
if (this.listInfo.pageNo < this.listInfo.totalPage && !this.isFetchingArticleList) {
console.log('loadMore');
this.fetchArticleList({
page: this.articleListInfo.pageNo + 1,
limit: 20,
lastedTime: this.articleListInfo.lastedTime
});
}
},
updatePraise({articleId, status, index}) {
if (!this.isUpdatingPraise) {
this.isUpdatingPraise = true;
}
this.updateArticlePraise({articleId, status, index}).then(() => {
this.isUpdatingPraise = false;
this.$store.dispatch('reportYas', {
params: {
appop: 'XY_STROLL_ATC_LIKE_C',
param: {
POS_ID: 101,
ARTICLE_ID: articleId,
STATUS: status,
},
},
});
}).catch(() => {
this.isUpdatingPraise = false;
});
}
},
};
</script>
<style lang="scss" scoped>
.no-data-container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
background-color: #efefef;
}
</style>