|
@@ -25,7 +25,7 @@
|
|
|
<el-col :span="24" class="leftTop">
|
|
|
<span>|</span> <span>{{ menuName }}</span>
|
|
|
</el-col>
|
|
|
- <el-col class="infoRightList" :span="24" v-for="(item, index) in jishuList" :key="index">
|
|
|
+ <el-col class="infoRightList" :span="24" v-for="(item, index) in exportList" :key="index">
|
|
|
<p>
|
|
|
<span class="textOver" @click="clickjishu(item.id)">{{ item.title }}</span
|
|
|
><span class="textOver">{{ item.publish_time }}</span>
|
|
@@ -109,7 +109,7 @@ export default {
|
|
|
pageSize: 10,
|
|
|
limit: 10,
|
|
|
zhuantiList: [],
|
|
|
- jishuList: [],
|
|
|
+ exportList: [],
|
|
|
hangyeList: [],
|
|
|
jiaoyuList: [],
|
|
|
}),
|
|
@@ -161,7 +161,7 @@ export default {
|
|
|
this.$set(this, `zhuantiList`, res.data);
|
|
|
} else if (name == '专家问诊') {
|
|
|
res = await this.query({ skip, limit, column_name: '专家问诊', ...info });
|
|
|
- this.$set(this, `jishuList`, res.data);
|
|
|
+ this.$set(this, `exportList`, res.data);
|
|
|
} else if (name == '行业研究') {
|
|
|
res = await this.query({ skip, limit, column_name: '行业研究', ...info });
|
|
|
this.$set(this, `hangyeList`, res.data);
|