videoDetail.vue
3.47 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<template>
<div class="video-detail-page">
<div @click="getUserInfo" class="detail-header">
<van-row>
<van-col span="4">
<van-image round width="3rem" height="3rem" :src="videoInfo.avatar" />
</van-col>
<van-col style="line-height: 3rem;">
<div class="name-info">{{ videoInfo.name }}</div>
</van-col>
</van-row>
<div class="other-info">{{ videoInfo.kg_name }} | {{ videoInfo.localism_type }}</div>
</div>
<div class="video-player">
<video-detail :item="videoInfo"></video-detail>
</div>
<div class="video-main">
<van-row>
<van-col span="24" style="padding-top: 0.2rem;">
<van-tabs sticky v-model:active="active" @click-tab="onClickTab" color="#F9D95C" background="#F7F7F7"
title-active-color="#222222" title-inactive-color="#777777">
<van-tab title="简介" :title-style="tabClass">
<div class="intro">{{ videoInfo.note }}</div>
</van-tab>
<van-tab :title="'留言 ' + comment_num" :title-style="tabClass" :to="'/client/videoDetail/comment?prod_id=' + $route.query.prod_id">
<router-view></router-view>
</van-tab>
</van-tabs>
</van-col>
</van-row>
</div>
</div>
</template>
<script setup>
import { mainStore } from '@/store'
import { storeToRefs } from 'pinia'
import VideoDetail from '@/components/VideoDetail/index.vue'
import { ref, reactive, onMounted, watch } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import axios from '@/utils/axios';
import $ from 'jquery'
import { Toast } from 'vant';
const $route = useRoute();
const $router = useRouter();
const getUserInfo = () => {
$router.push({
path: '/client/personIndex'
})
}
const active = ref(0); // index 0 为简介,1 为留言
const onClickTab = ({ title }) => {
console.warn(title);
};
// 监听路由变化
watch(() => $route.path, (v) => {
if (v === '/client/videoDetail') { // 返回详情主页面的时候激活第一个选中项
active.value = 0;
}
})
const tabClass = {
fontSize: '1rem'
}
// 处理主路由的留言数量问题
const store = mainStore()
// Pinia 解构方法:storeToRefs
const { comment_num } = storeToRefs(store)
const videoInfo = ref('');
onMounted(() => {
// 检查$route.path判断tab默认值
if ($route.path === '/client/videoDetail') {
active.value = 0;
} else {
active.value = 1;
}
/**
* 获取视频详情
*/
axios.get('/srv/?a=prod_info', {
params: {
prod_id: $route.query.prod_id
}
})
.then(res => {
if (res.data.code === 1) {
videoInfo.value = res.data.data;
// 动态调整留言数量
store.changeCommentNum(res.data.data.comment_num);
} else {
console.warn(res);
Toast({
icon: 'close',
message: res.data.msg
});
}
})
.catch(err => {
console.error(err);
})
})
</script>
<script>
import mixin from 'common/mixin';
export default {
mixins: [mixin.init],
data() {
return {
}
},
mounted() {
},
methods: {
}
}
</script>
<style lang="less" scoped>
.video-detail-page {
background-color: #FFFFFF;
.detail-header {
padding: 1rem;
.name-info {
color: #222222;
font-size: 1.15rem;
}
.other-info {
color: #999999;
}
}
.video-player {
height: auto;
}
.video-main {
height: auto;
.intro {
padding: 1rem;
color: #333333;
}
}
}
</style>