|
|
@@ -0,0 +1,332 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-breadcrumb separator=">">
|
|
|
+ <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
|
|
|
+ <el-breadcrumb-item>
|
|
|
+ <a href="#">系统管理</a>
|
|
|
+ </el-breadcrumb-item>
|
|
|
+ <el-breadcrumb-item>
|
|
|
+ <a href="/job/resume">人力资源库管理</a>
|
|
|
+ </el-breadcrumb-item>
|
|
|
+ </el-breadcrumb>
|
|
|
+ <el-divider></el-divider>
|
|
|
+ <!--
|
|
|
+ 要resetFields起作用,必须配置:model和prop
|
|
|
+ -->
|
|
|
+ <el-form ref="queryForm" :model="queryModel" inline class="demo-form-inline">
|
|
|
+ <el-form-item label="求职岗位" prop="positionCategoryId">
|
|
|
+ <el-input type="text" size="mini" v-model="queryModel.positionCategoryId"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="实名制状态" prop="approveStatus"><!-- 用户表里面的 -->
|
|
|
+ <el-input type="text" size="mini" v-model="queryModel.approveStatus"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="是否上架" prop="status">
|
|
|
+ <el-input type="text" size="mini" v-model="queryModel.status"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="姓名" prop="jobStatus">
|
|
|
+ <el-input type="text" size="mini" v-model="queryModel.jobStatus"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" size="mini" icon="ios-search" @click="changePage(1)" :loading="loading">查询</el-button>
|
|
|
+ <el-button type="info" size="mini" style="margin-left: 8px" @click="handleReset('queryForm')">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <el-divider></el-divider>
|
|
|
+ <el-row class="button-group">
|
|
|
+ <el-button type="primary" size="small" plain icon="el-icon-circle-plus" @click="handleAdd" >新增</el-button>
|
|
|
+ <el-button type="primary" size="small" plain icon="el-icon-circle-plus" :disabled="multipleSelection.length == 0" @click="handleBatchDelete">删除选中项</el-button>
|
|
|
+ </el-row>
|
|
|
+ <el-table :data="tableData" style="min-height: 400px" v-loading="loading" stripe @sort-change="sortChange" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55"></el-table-column>
|
|
|
+ <el-table-column prop="userPhoto" label="照片" width="80">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <a :href="row.userPhoto" target="_blank">
|
|
|
+ <el-avatar :size="48" shape="circle" :src="row.userPhoto+'?x-oss-process=image/resize,m_fill,w_64,h_64'" :key="row.id"></el-avatar>
|
|
|
+ </a>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="userName" label="姓名" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="positionCategoryName" label="应聘职位" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="sexName" label="性别" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="dreamMoneyName" label="期望工资" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="workExpName" label="工作经验" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="educationName" label="学历" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="birthday" label="出生年月" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="resumeUrls" label="简历附件" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="jobStatusName" label="当前状态" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="userIsAuthenticationName" label="实名制状态" width="100"></el-table-column>
|
|
|
+ <el-table-column prop="statusName" label="上架状态" width="100"></el-table-column>
|
|
|
+ <el-table-column label="操作">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-button size="mini" type="text" @click="handleEdit(row)">简历详情</el-button>
|
|
|
+ <el-button v-if="row.status == '0'" size="mini" type="text" @click="handleChangeStatus(row)">上架</el-button>
|
|
|
+ <el-button v-if="row.status == '1'" size="mini" type="text" @click="handleChangeStatus(row)">下架</el-button>
|
|
|
+ <el-button size="mini" type="text" @click="handleDelete(row)">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <el-pagination
|
|
|
+ :current-page.sync="pageIndex"
|
|
|
+ :total="totalElements"
|
|
|
+ :page-sizes="pageSizeList"
|
|
|
+ @current-change="changePage"
|
|
|
+ @size-change="pageSizeChange"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ ></el-pagination>
|
|
|
+ <resume-detail
|
|
|
+ v-if="showModal"
|
|
|
+ :businessKey="businessKey"
|
|
|
+ :title="modalTitle"
|
|
|
+ @close="onDetailModalClose"
|
|
|
+ ></resume-detail>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import Constant from "@/constant";
|
|
|
+import ResumeDetail from "./resume-detail";
|
|
|
+import resumeApi from "@/api/job/resume";
|
|
|
+import NProgress from "nprogress"; // progress bar
|
|
|
+import "nprogress/nprogress.css"; // progress bar style
|
|
|
+
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ var self = this;
|
|
|
+
|
|
|
+ return {
|
|
|
+ queryModel: {
|
|
|
+ id: "",
|
|
|
+ createBy: "",
|
|
|
+ createTime: "",
|
|
|
+ updateBy: "",
|
|
|
+ updateTime: "",
|
|
|
+ delFlag: "",
|
|
|
+ jobUserId: "",
|
|
|
+ sex: "",
|
|
|
+ positionCategoryId: "",
|
|
|
+ workExp: "",
|
|
|
+ education: "",
|
|
|
+ dreamMoney: "",
|
|
|
+ dreamAdd: "",
|
|
|
+ birthday: "",
|
|
|
+ introduction: "",
|
|
|
+ status: "",
|
|
|
+ approveStatus: "",
|
|
|
+ jobStatus: "",
|
|
|
+ resumeUrls: "",
|
|
|
+ },
|
|
|
+ loading: false,
|
|
|
+ tableData: [],
|
|
|
+ pageIndex: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ totalPages: 0,
|
|
|
+ totalElements: 0,
|
|
|
+ field: "",
|
|
|
+ direction: "",
|
|
|
+ pageSizeList: [10, 20, 30],
|
|
|
+ multipleSelection: [],
|
|
|
+ showModal: false,
|
|
|
+ modalTitle: "",
|
|
|
+ businessKey: "",
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ changePage(pageIndex) {
|
|
|
+ var self = this;
|
|
|
+
|
|
|
+ self.loading = true;
|
|
|
+
|
|
|
+ self.pageIndex = pageIndex;
|
|
|
+ var formData = new FormData();
|
|
|
+
|
|
|
+ formData.append("pageIndex", self.pageIndex);
|
|
|
+ formData.append("pageSize", self.pageSize);
|
|
|
+
|
|
|
+ formData.append("id", self.queryModel.id);
|
|
|
+ formData.append("createBy", self.queryModel.createBy);
|
|
|
+ formData.append("createTime", self.queryModel.createTime);
|
|
|
+ formData.append("updateBy", self.queryModel.updateBy);
|
|
|
+ formData.append("updateTime", self.queryModel.updateTime);
|
|
|
+ formData.append("delFlag", self.queryModel.delFlag);
|
|
|
+ formData.append("jobUserId", self.queryModel.jobUserId);
|
|
|
+ formData.append("sex", self.queryModel.sex);
|
|
|
+ formData.append("positionCategoryId", self.queryModel.positionCategoryId);
|
|
|
+ formData.append("workExp", self.queryModel.workExp);
|
|
|
+ formData.append("education", self.queryModel.education);
|
|
|
+ formData.append("dreamMoney", self.queryModel.dreamMoney);
|
|
|
+ formData.append("dreamAdd", self.queryModel.dreamAdd);
|
|
|
+ formData.append("birthday", self.queryModel.birthday);
|
|
|
+ formData.append("introduction", self.queryModel.introduction);
|
|
|
+ formData.append("status", self.queryModel.status);
|
|
|
+ formData.append("approveStatus", self.queryModel.approveStatus);
|
|
|
+ formData.append("jobStatus", self.queryModel.jobStatus);
|
|
|
+ formData.append("resumeUrls", self.queryModel.resumeUrls);
|
|
|
+
|
|
|
+ if (this.field != null) {
|
|
|
+ formData.append("field", this.field);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (this.direction != null) {
|
|
|
+ formData.append("direction", this.direction);
|
|
|
+ }
|
|
|
+
|
|
|
+ resumeApi
|
|
|
+ .pageList(formData)
|
|
|
+ .then(function (response) {
|
|
|
+ self.loading = false;
|
|
|
+
|
|
|
+ var jsonData = response.data.data;
|
|
|
+
|
|
|
+ self.tableData = jsonData.data;
|
|
|
+ self.totalPages = jsonData.totalPages;
|
|
|
+ self.totalElements = jsonData.recordsTotal;
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ self.loading = false;
|
|
|
+ // self.$message.error(error + "");
|
|
|
+ });
|
|
|
+ },
|
|
|
+ pageSizeChange(pageSize) {
|
|
|
+ this.pageSize = pageSize;
|
|
|
+
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.changePage(this.pageIndex);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ sortChange(data) {
|
|
|
+ this.field = data.column.field;
|
|
|
+ this.direction = data.order;
|
|
|
+
|
|
|
+ this.changePage(this.pageIndex);
|
|
|
+ },
|
|
|
+ handleSelectionChange(val) {
|
|
|
+ this.multipleSelection = val;
|
|
|
+ },
|
|
|
+ handleReset(name) {
|
|
|
+ this.$refs[name].resetFields();
|
|
|
+ },
|
|
|
+ handleAdd() {
|
|
|
+ this.modalTitle = "新增";
|
|
|
+ this.businessKey = "";
|
|
|
+ this.showModal = true;
|
|
|
+ },
|
|
|
+ handleEdit(record) {
|
|
|
+ this.modalTitle = "编辑";
|
|
|
+ this.businessKey = record.id;
|
|
|
+ this.showModal = true;
|
|
|
+ },
|
|
|
+ handleChangeStatus(record) {
|
|
|
+ var self = this;
|
|
|
+
|
|
|
+ var msg = "";
|
|
|
+ if(record.status == '0'){
|
|
|
+ msg = "是否确认上架?";
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ msg = "是否确认下架?";
|
|
|
+ }
|
|
|
+
|
|
|
+ self.$confirm(msg, "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ resumeApi.changeStatus(record.id).then(function (response) {
|
|
|
+ var jsonData = response.data;
|
|
|
+
|
|
|
+ if (jsonData.result) {
|
|
|
+ self.changePage(self.pageIndex);
|
|
|
+ self.$message({type: "success", message: "提交成功!"});
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleDelete(record) {
|
|
|
+ var self = this;
|
|
|
+
|
|
|
+ self
|
|
|
+ .$confirm("是否确认删除?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ resumeApi.remove(record.id).then(function (response) {
|
|
|
+ var jsonData = response.data;
|
|
|
+
|
|
|
+ if (jsonData.result) {
|
|
|
+ // var index = self.tableData.indexOf(record);
|
|
|
+ // self.tableData.splice(index, 1);
|
|
|
+ self.changePage(self.pageIndex);
|
|
|
+
|
|
|
+ self.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "删除成功!",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleBatchDelete() {
|
|
|
+ var self = this;
|
|
|
+
|
|
|
+ var idList = this.multipleSelection.map((record) => {
|
|
|
+ return record.id;
|
|
|
+ });
|
|
|
+
|
|
|
+ this.$confirm("是否确认删除选中项?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ }).then(() => {
|
|
|
+ resumeApi.batchRemove(idList).then(function (response) {
|
|
|
+ var jsonData = response.data;
|
|
|
+
|
|
|
+ if (jsonData.result) {
|
|
|
+ self.changePage(self.pageIndex);
|
|
|
+
|
|
|
+ self.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "删除成功!",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ onDetailModalClose(refreshed) {
|
|
|
+ //保存成功后回调
|
|
|
+ this.showModal = false;
|
|
|
+
|
|
|
+ if (refreshed) {
|
|
|
+ this.changePage(this.pageIndex);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ mounted: function () {
|
|
|
+ this.changePage(1);
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ "resume-detail": ResumeDetail,
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.el-breadcrumb {
|
|
|
+ margin: 10px;
|
|
|
+ line-height: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.el-divider {
|
|
|
+ margin: 5px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.demo-form-inline {
|
|
|
+ margin-left: 10px;
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+
|
|
|
+.button-group {
|
|
|
+ margin-left: 10px;
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+</style>
|