|
@@ -14,7 +14,7 @@
|
|
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
|
|
<el-tab-pane label="双选会" name="1">
|
|
|
<el-col :span="24" class="list">
|
|
|
- <el-col :span="24" class="talksList" v-for="(item, index) in fairsList" :key="index">
|
|
|
+ <el-col :span="24" class="talksList" v-for="(item, index) in fairsList" :key="index" @click.native="toPath('jobfair', item.id)">
|
|
|
<el-col :span="24" style="padding:0 0 12px 0;">
|
|
|
<el-col :span="20">
|
|
|
<span class="qiu"></span>
|
|
@@ -36,7 +36,7 @@
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="宣讲会" name="2">
|
|
|
<el-col :span="24" class="list">
|
|
|
- <el-col :span="24" class="talksList" v-for="(item, index) in talksList" :key="index">
|
|
|
+ <el-col :span="24" class="talksList" v-for="(item, index) in talksList" :key="index" @click.native="toPath('talk', item.id)">
|
|
|
<el-col :span="24" style="padding:0 0 12px 0;">
|
|
|
<el-col :span="20">
|
|
|
<span class="qiu"></span>
|
|
@@ -58,7 +58,7 @@
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="招聘快讯" name="3">
|
|
|
<el-col :span="24" class="list">
|
|
|
- <el-col :span="24" class="talksList" v-for="(item, index) in infoList" :key="index">
|
|
|
+ <el-col :span="24" class="talksList" v-for="(item, index) in infoList" :key="index" @click.native="toPath('jobinfo', item.id)">
|
|
|
<el-col :span="24" style="padding:0 0 12px 0;">
|
|
|
<el-col :span="20">
|
|
|
<span class="qiu"></span>
|
|
@@ -112,6 +112,9 @@ export default {
|
|
|
else if (this.activeName === `3`) type = `jobinfo`;
|
|
|
this.$router.push({ path: `/master/jobs/${type}` });
|
|
|
},
|
|
|
+ toPath(type, id) {
|
|
|
+ this.$router.push({ path: `/master/detail/${type}/${id}` });
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|