|
|
@@ -96,8 +96,9 @@
|
|
|
<div class="nameDiv">{{item.name}}</div>
|
|
|
<div class="descFont">基本信息:</div>
|
|
|
<div>
|
|
|
- <span v-if="item.sexN=='0'">男</span>
|
|
|
- <span v-else>女</span>
|
|
|
+ <span v-if="item.sexN=='1'">男</span>
|
|
|
+ <span v-if="item.sexN=='0'">女</span>
|
|
|
+ <span v-if="item.sexN=='2'">保密</span>
|
|
|
·
|
|
|
<span>{{item.age}}岁</span>
|
|
|
·
|
|
|
@@ -117,15 +118,12 @@
|
|
|
<div class="buttonDiv">
|
|
|
<el-row>
|
|
|
<el-col :span="24">
|
|
|
- <el-button type="primary" style="width:180px">面试邀请</el-button>
|
|
|
+ <el-button type="primary" style="width:210px">面试邀请</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row style="margin-top:20px">
|
|
|
- <el-col :span="13">
|
|
|
- <el-button type="primary" style="width:80px" plain @click="handleDownload(item)">导出</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="11">
|
|
|
- <el-button type="primary" style="width:80px" plain @click="handleDeleteHr(item)">删除</el-button>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-button type="primary" style="width:210px" plain @click="handleDownload(item)">导出</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
@@ -170,8 +168,9 @@
|
|
|
<div class="nameDiv">{{item.name}}</div>
|
|
|
<div class="descFont">基本信息:</div>
|
|
|
<div>
|
|
|
- <span v-if="item.sexN=='0'">男</span>
|
|
|
- <span v-else>女</span>
|
|
|
+ <span v-if="item.sexN=='1'">男</span>
|
|
|
+ <span v-if="item.sexN=='0'">女</span>
|
|
|
+ <span v-if="item.sexN=='2'">保密</span>
|
|
|
·
|
|
|
<span>{{item.age}}岁</span>
|
|
|
·
|
|
|
@@ -191,15 +190,12 @@
|
|
|
<div class="buttonDiv">
|
|
|
<el-row>
|
|
|
<el-col :span="24">
|
|
|
- <el-button type="primary" style="width:180px">面试邀请</el-button>
|
|
|
+ <el-button type="primary" style="width:210px">面试邀请</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row style="margin-top:20px">
|
|
|
- <el-col :span="13">
|
|
|
- <el-button type="primary" style="width:80px" plain @click="handleDownload(item)">导出</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="11">
|
|
|
- <el-button type="primary" style="width:80px" plain @click="handleDelete(item)">删除</el-button>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-button type="primary" style="width:210px" plain @click="handleDownload(item)">导出</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
@@ -244,8 +240,9 @@
|
|
|
<div class="nameDiv">{{item.name}}</div>
|
|
|
<div class="descFont">基本信息:</div>
|
|
|
<div>
|
|
|
- <span v-if="item.sexN=='0'">男</span>
|
|
|
- <span v-else>女</span>
|
|
|
+ <span v-if="item.sexN=='1'">男</span>
|
|
|
+ <span v-if="item.sexN=='0'">女</span>
|
|
|
+ <span v-if="item.sexN=='2'">保密</span>
|
|
|
·
|
|
|
<span>{{item.age}}岁</span>
|
|
|
·
|
|
|
@@ -265,7 +262,7 @@
|
|
|
<div class="buttonDiv">
|
|
|
<el-row>
|
|
|
<el-col :span="24">
|
|
|
- <el-button type="primary" style="width:180px">面试邀请</el-button>
|
|
|
+ <el-button type="primary" style="width:210px">面试邀请</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row style="margin-top:20px">
|
|
|
@@ -273,7 +270,7 @@
|
|
|
<el-button type="primary" style="width:80px" plain @click="handleDownload(item)">导出</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="11">
|
|
|
- <el-button type="primary" style="width:80px" plain @click="handleDeleteCollection(item)">删除</el-button>
|
|
|
+ <el-button type="danger" style="width:95px" plain @click="handleDeleteCollection(item)">取消收藏</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
@@ -631,7 +628,7 @@ export default {
|
|
|
var self = this;
|
|
|
|
|
|
self
|
|
|
- .$confirm("是否确认删除?", "提示", {
|
|
|
+ .$confirm("是否确认取消收藏?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
|
@@ -647,7 +644,7 @@ export default {
|
|
|
|
|
|
self.$message({
|
|
|
type: "success",
|
|
|
- message: "删除成功!",
|
|
|
+ message: "取消成功!",
|
|
|
});
|
|
|
}
|
|
|
});
|