|
@@ -71,6 +71,7 @@ import textVideo from '@/components/parts/textVideo.vue';
|
|
|
const { mapActions: dock } = createNamespacedHelpers('dock');
|
|
|
const { mapActions: exportuser } = createNamespacedHelpers('exportuser');
|
|
|
const { mapActions: marketuser } = createNamespacedHelpers('marketuser');
|
|
|
+const { mapActions: newsguidance } = createNamespacedHelpers('newsguidance');
|
|
|
import moment from 'moment';
|
|
|
export default {
|
|
|
name: 'videoDetail',
|
|
@@ -107,6 +108,7 @@ export default {
|
|
|
...dock({ dockQuery: 'query', dockFetch: 'fetch' }),
|
|
|
...exportuser({ expertQuery: 'query' }),
|
|
|
...marketuser({ operaFetch: 'operaFetch' }),
|
|
|
+ ...newsguidance({ danceQuery: 'query' }),
|
|
|
async seachInfo({ skip = 0, limit = 5, ...info } = {}) {
|
|
|
let res = await this.dockFetch(this.id);
|
|
|
if (this.$checkRes(res)) {
|
|
@@ -122,6 +124,8 @@ export default {
|
|
|
// 专家智库
|
|
|
let exportdata = await this.expertQuery({ role: 6, limit: 6 });
|
|
|
if (this.$checkRes(exportdata)) this.$set(this, `expertList`, exportdata.data);
|
|
|
+ //嘉宾访谈dock id
|
|
|
+ let jbftData = await this.danceQuery();
|
|
|
}
|
|
|
},
|
|
|
// 文字/视频倒计时
|