Commit e0458767270d2ff8ec5e08b6f52a5c4ed3832e34
Merge branch 'develop_interview' of 39.98.150.180:antissoft/antissoft.dati.admin…
… into develop_interview
Showing
1 changed file
with
4 additions
and
1 deletions
src/views/user/userlist.vue
| @@ -92,7 +92,7 @@ | @@ -92,7 +92,7 @@ | ||
| 92 | <el-tag v-for="item in scope.row.taglist" size="mini" style="margin-right:5px" closable | 92 | <el-tag v-for="item in scope.row.taglist" size="mini" style="margin-right:5px" closable |
| 93 | :disable-transitions="false" @close="handleClose(item,scope.row)">{{item}}</el-tag> | 93 | :disable-transitions="false" @close="handleClose(item,scope.row)">{{item}}</el-tag> |
| 94 | <el-tag size="mini" @click="addtag(scope.row)" style="cursor:pointer">+</el-tag> | 94 | <el-tag size="mini" @click="addtag(scope.row)" style="cursor:pointer">+</el-tag> |
| 95 | - | 95 | + <el-button style="margin-left:10px;" size="mini" type="text" @click="handleToResume(scope.row)">简历分析</el-button> |
| 96 | </template> | 96 | </template> |
| 97 | </el-table-column> | 97 | </el-table-column> |
| 98 | <el-table-column prop="date" label="系统推荐" width="220px" sortable> | 98 | <el-table-column prop="date" label="系统推荐" width="220px" sortable> |
| @@ -569,6 +569,9 @@ | @@ -569,6 +569,9 @@ | ||
| 569 | this.loadTree(); | 569 | this.loadTree(); |
| 570 | }, | 570 | }, |
| 571 | methods: { | 571 | methods: { |
| 572 | + handleToResume(item){ | ||
| 573 | + window.open(`http://interview-admin.7-stars.com.cn/Appraise/${item.sex == 1?'malestaff':'femalestaff'}/${item.id}.html`,'_blank'); | ||
| 574 | + }, | ||
| 572 | handleClose(tag, row) { | 575 | handleClose(tag, row) { |
| 573 | 576 | ||
| 574 | 577 |