|
@@ -45,7 +45,7 @@
|
|
|
</van-tab>
|
|
|
<van-tab title="专家智库">
|
|
|
<el-col :span="24" class="three">
|
|
|
- <el-col :span="24" class="expertList" v-for="(item, index) in expertList" :key="index">
|
|
|
+ <el-col :span="24" class="expertList" v-for="(item, index) in expertList" :key="index" @click.native="expertBtn(item)">
|
|
|
<el-col :span="5" class="image">
|
|
|
<el-image
|
|
|
:src="item.expertimage"
|
|
@@ -238,6 +238,10 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ // 专家详情
|
|
|
+ expertBtn(data) {
|
|
|
+ this.$router.push({ path: '/market/exportDetail', query: { id: data.id } });
|
|
|
+ },
|
|
|
// 返回
|
|
|
back() {
|
|
|
this.$router.push({ path: '/live/index' });
|