|
@@ -18,7 +18,7 @@
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
<!-- 链接到查看简历公共模块 -->
|
|
|
- <el-button size="mini" type="text" @click="checkResume(scoped.row.resume_id)">查看简历</el-button>
|
|
|
+ <el-button size="mini" type="text" @click="checkResume(scoped.row.resume_id, scoped.row.id)">查看简历</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="12" v-if="type !== '1'">
|
|
|
<el-button size="mini" type="text" @click="update('1', scoped.row.id)">纳入考虑</el-button>
|
|
@@ -79,10 +79,11 @@ export default {
|
|
|
this.currentPage = val ? 1 : val;
|
|
|
this.$emit('changePage', { type: this.type, currentPage: this.currentPage, searchInfo: this.searchInfo });
|
|
|
},
|
|
|
- checkResume(id) {
|
|
|
- this.$emit('searchInfo', id);
|
|
|
+ checkResume(resumeid, letterid) {
|
|
|
+ this.$emit('searchInfo', { resumeid: resumeid, letterid: letterid });
|
|
|
},
|
|
|
update(status, id) {
|
|
|
+ console.log(status, id);
|
|
|
this.$emit('update', { status: status, id: id });
|
|
|
},
|
|
|
},
|