|
@@ -39,7 +39,7 @@
|
|
<el-button type="primary" size="mini" @click="display = 'list'">返回</el-button>
|
|
<el-button type="primary" size="mini" @click="display = 'list'">返回</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
- <inddetail></inddetail>
|
|
|
|
|
|
+ <inddetail :detailinfo="inddetail"></inddetail>
|
|
</el-col>
|
|
</el-col>
|
|
</span>
|
|
</span>
|
|
<span v-else-if="column_name == '嘉宾访谈'">
|
|
<span v-else-if="column_name == '嘉宾访谈'">
|
|
@@ -125,6 +125,8 @@ export default {
|
|
roadshowTotal: 0,
|
|
roadshowTotal: 0,
|
|
// 专家详情
|
|
// 专家详情
|
|
expdetail: {},
|
|
expdetail: {},
|
|
|
|
+ // 行业研究
|
|
|
|
+ inddetail: {},
|
|
};
|
|
};
|
|
},
|
|
},
|
|
async created() {
|
|
async created() {
|
|
@@ -200,6 +202,11 @@ export default {
|
|
if (this.$checkRes(res)) {
|
|
if (this.$checkRes(res)) {
|
|
this.$set(this, `expdetail`, res.data);
|
|
this.$set(this, `expdetail`, res.data);
|
|
}
|
|
}
|
|
|
|
+ } else if (columnName == '行业研究') {
|
|
|
|
+ let res = await this.newsFetch(id);
|
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
|
+ this.$set(this, `inddetail`, res.data);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 点击查看详情
|
|
// 点击查看详情
|