|
@@ -2,7 +2,7 @@
|
|
|
<div id="detail">
|
|
|
<detail-layout typeInfo="职位详情">
|
|
|
<template v-slot:header>
|
|
|
- <el-row :span="24" class="talkTop">
|
|
|
+ <el-row :span="24" class="talkTop" @click.native="toHtml">
|
|
|
<el-col :span="5" class="talkTopImage">
|
|
|
<div class="demo-image">
|
|
|
<el-image style="width: 3.75rem; height: 3.75rem" :src="url" :fit="`cover`"></el-image>
|
|
@@ -181,6 +181,9 @@ export default {
|
|
|
message: `${result.errcode}` === '0' ? '投递简历成功' : result.errmsg === '数据已存在' ? '已投递简历,不能重复投递' : result.errmsg,
|
|
|
});
|
|
|
},
|
|
|
+ toHtml() {
|
|
|
+ window.location.href = `corp.html#/${this.info.corpid}`;
|
|
|
+ },
|
|
|
},
|
|
|
filters: {
|
|
|
getData({ data, search }) {
|