Commit 612bf2ad3ecb7249d3de94a7d3e4bf5bbb31fa9d
1 parent
d35d8b3c
人才列表新增简历分析按钮
Showing
1 changed file
with
4 additions
and
1 deletions
src/views/user/userlist.vue
| ... | ... | @@ -90,7 +90,7 @@ |
| 90 | 90 | <el-tag v-for="item in scope.row.taglist" size="mini" style="margin-right:5px" closable |
| 91 | 91 | :disable-transitions="false" @close="handleClose(item,scope.row)">{{item}}</el-tag> |
| 92 | 92 | <el-tag size="mini" @click="addtag(scope.row)" style="cursor:pointer">+</el-tag> |
| 93 | - | |
| 93 | + <el-button style="margin-left:10px;" size="mini" type="text" @click="handleToResume(scope.row)">简历分析</el-button> | |
| 94 | 94 | </template> |
| 95 | 95 | </el-table-column> |
| 96 | 96 | <el-table-column prop="date" label="系统推荐" width="220px" sortable> |
| ... | ... | @@ -560,6 +560,9 @@ |
| 560 | 560 | this.loadTree(); |
| 561 | 561 | }, |
| 562 | 562 | methods: { |
| 563 | + handleToResume(item){ | |
| 564 | + window.open(`http://interview-admin.7-stars.com.cn/Appraise/${item.sex == 1?'malestaff':'femalestaff'}/${item.id}.html`,'_blank'); | |
| 565 | + }, | |
| 563 | 566 | handleClose(tag, row) { |
| 564 | 567 | |
| 565 | 568 | ... | ... |