article-detail.vue
2.64 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
<template>
<div class="article">
<ArticleBar class="header" @on-close="onClose"></ArticleBar>
<div class="body" v-if="fetchStatus">
<div class="loading">
<Loading></Loading>
</div>
</div>
<ArticleBody v-else ref="body" :articleId="grassId" class="body"></ArticleBody>
<ArticleFooter class="footer"
v-if="articleDetail && !fetchStatus"
v-bind="articleDetail.footer"
@on-comment-click="onCommentClick"
@on-close="onClose">
</ArticleFooter>
</div>
</template>
<script>
import ArticleBar from './article-bar';
import ArticleFooter from './article-footer';
import ArticleBody from './article-body';
import * as sleep from '../../../../utils/sleep';
import { createNamespacedHelpers } from 'vuex';
import YAS from 'utils/yas-constants';
import { Loading } from 'cube-ui';
const { mapActions, mapState, mapMutations } = createNamespacedHelpers('article');
export default {
name: 'ArticleDetail',
components: {
ArticleBar,
ArticleBody,
ArticleFooter,
Loading
},
data() {
return {
articleId: 0,
grassId: 0,
posId: YAS.scene.newsDetail
};
},
mounted() {
},
methods: {
onCommentClick() {
this.$router.push({
name: 'article.comment',
params: {
articleId: this.grassId
}
});
},
...mapActions(['getDetail', 'fetchProductFav']),
...mapMutations({
fetchArticleDetail: 'FETCH_GUANG_SUCCESS',
fetchArticleProductList: 'GUANG_DETAIL_PRODUCT_LIST'
}),
fetch(params) {
this.articleId = params.articleId;
this.grassId = params.grassId;
return this.getDetail({
article_id: params.articleId,
grass_id: params.grassId
}).then(() => {
this.$sdk.getUser().then(user => {
if (user && user.uid) {
this.fetchProductFav();
}
});
});
},
onClose() {
this.reset();
this.$emit('on-close');
},
async reset() {
await sleep.sleep(200);
this.fetchArticleDetail({});
this.fetchArticleProductList([]);
}
},
computed: {
...mapState({
articleDetail: 'articleDetail',
fetchStatus: 'fetchArticleDetail'
})
}
};
</script>
<style lang="scss" scoped>
.loading {
width: 100%;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 10px;
}
.article {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
.header {
// pass
}
.body {
flex: 1;
overflow: auto;
-webkit-overflow-scrolling: touch;
background-color: white;
}
.footer {
// pass
}
}
</style>