|
@@ -58,18 +58,18 @@
|
|
|
<el-col :span="24" class="downLeftTop">
|
|
|
<el-image :src="downLeftTopImage"></el-image>
|
|
|
<span class="topText">
|
|
|
- <span>在线指导</span>
|
|
|
+ <span>嘉宾访谈</span>
|
|
|
<span
|
|
|
><p>G</p>
|
|
|
<p>uidance</p></span
|
|
|
>
|
|
|
- <span @click="turnToList('在线指导')">更多</span>
|
|
|
+ <span @click="turnToList('嘉宾访谈')">更多</span>
|
|
|
</span>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="infoLeft">
|
|
|
<el-col class="infoRightList" :span="24" v-for="(item, index) in zhidaolist" :key="index">
|
|
|
<p>
|
|
|
- <span class="textOver" @click="$router.push({ path: '/technical/list', query: { id: item.id, display: 4, column_name: '在线指导' } })">{{
|
|
|
+ <span class="textOver" @click="$router.push({ path: '/technical/list', query: { id: item.id, display: 4, column_name: '嘉宾访谈' } })">{{
|
|
|
item.title
|
|
|
}}</span
|
|
|
><span class="textOver">{{ item.publish_time }}</span>
|
|
@@ -146,6 +146,10 @@ export default {
|
|
|
for (const val of res.data) {
|
|
|
this.tpxwSearch({ column_id: val.id, column_name: val.name, site: val.site });
|
|
|
}
|
|
|
+ const zhidao = await this.danceQuery({ skip: 0, limit: 8 });
|
|
|
+ if (this.$checkRes(zhidao)) this.$set(this, `zhidaolist`, zhidao.data);
|
|
|
+ const luyan = await this.adshowQuery({ skip: 0, limit: 5 });
|
|
|
+ if (this.$checkRes(luyan)) this.$set(this, `luyanlist`, luyan.data);
|
|
|
},
|
|
|
async tpxwSearch({ column_id, column_name, site } = {}) {
|
|
|
if (column_name == '专家问诊') {
|
|
@@ -154,12 +158,6 @@ export default {
|
|
|
} else if (column_name == '行业研究') {
|
|
|
const res = await this.newsList({ skip: 0, limit: 8, column_id: column_id });
|
|
|
if (this.$checkRes(res)) this.$set(this, `hangyeList`, res.data);
|
|
|
- } else if (column_name == '在线指导') {
|
|
|
- const res = await this.danceQuery({ skip: 0, limit: 8, column_id: column_id });
|
|
|
- if (this.$checkRes(res)) this.$set(this, `zhidaolist`, res.data);
|
|
|
- } else if (column_name == '项目路演') {
|
|
|
- const res = await this.adshowQuery({ skip: 0, limit: 5, column_id: column_id });
|
|
|
- if (this.$checkRes(res)) this.$set(this, `luyanlist`, res.data);
|
|
|
}
|
|
|
},
|
|
|
turnToList(column_name) {
|