2023-08-10 21:09:49 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="项目名称" prop="projectName">
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-input
|
2023-08-12 21:32:32 +08:00
|
|
|
v-model="queryParams.projectName"
|
|
|
|
placeholder="请输入项目名称"
|
2023-08-10 21:09:49 +08:00
|
|
|
clearable
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="人员姓名" prop="name">
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-input
|
|
|
|
v-model="queryParams.name"
|
2023-08-12 21:32:32 +08:00
|
|
|
placeholder="请输入人员姓名"
|
2023-08-10 21:09:49 +08:00
|
|
|
clearable
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="是否有证" prop="isCredential">
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-select v-model="queryParams.isCredential" placeholder="请选择是否有证书" clearable>
|
|
|
|
<el-option
|
|
|
|
v-for="dict in dict.type.sys_yes_no"
|
|
|
|
:key="dict.value"
|
|
|
|
:label="dict.label"
|
|
|
|
:value="dict.value"
|
|
|
|
/>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="责任主体" prop="projectDeptId" v-hasPermi="['project:project:zgs']">
|
|
|
|
<el-select v-model="queryParams.projectDeptId" placeholder="请选择责任主体" clearable>
|
|
|
|
<el-option
|
|
|
|
v-for="dict in depts"
|
|
|
|
:key="dict.deptId"
|
|
|
|
:label="dict.deptName"
|
|
|
|
:value="dict.deptId"
|
|
|
|
></el-option>
|
|
|
|
</el-select>
|
2023-08-10 21:09:49 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
2023-08-12 21:32:32 +08:00
|
|
|
<!-- <el-col :span="1.5">
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
plain
|
|
|
|
icon="el-icon-plus"
|
|
|
|
size="mini"
|
|
|
|
@click="handleAdd"
|
|
|
|
v-hasPermi="['project:surProjectSpecial:add']"
|
|
|
|
>新增</el-button>
|
2023-08-12 21:32:32 +08:00
|
|
|
</el-col> -->
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="success"
|
|
|
|
plain
|
|
|
|
icon="el-icon-edit"
|
|
|
|
size="mini"
|
|
|
|
:disabled="single"
|
|
|
|
@click="handleUpdate"
|
|
|
|
v-hasPermi="['project:surProjectSpecial:edit']"
|
|
|
|
>修改</el-button>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="danger"
|
|
|
|
plain
|
|
|
|
icon="el-icon-delete"
|
|
|
|
size="mini"
|
|
|
|
:disabled="multiple"
|
|
|
|
@click="handleDelete"
|
|
|
|
v-hasPermi="['project:surProjectSpecial:remove']"
|
|
|
|
>删除</el-button>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="warning"
|
|
|
|
plain
|
|
|
|
icon="el-icon-download"
|
|
|
|
size="mini"
|
|
|
|
@click="handleExport"
|
|
|
|
v-hasPermi="['project:surProjectSpecial:export']"
|
|
|
|
>导出</el-button>
|
|
|
|
</el-col>
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="surProjectSpecialList" @selection-change="handleSelectionChange">
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-table-column label="项目名称" align="center" prop="projectName" width="220" show-overflow-tooltip />
|
|
|
|
<el-table-column label="提交单位" align="center" prop="deptName" />
|
|
|
|
<el-table-column label="人员姓名" align="center" prop="name" />
|
|
|
|
<el-table-column label="性别" align="center" prop="sex" >
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<dict-tag :options="dict.type.sys_user_sex" :value="scope.row.sex"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2023-08-14 22:51:52 +08:00
|
|
|
<el-table-column label="联系方式" align="center" prop="phoneNumber" />
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-table-column label="是否有证书" align="center" prop="isCredential">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.isCredential"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2023-08-14 22:51:52 +08:00
|
|
|
<el-table-column label="证书编号" align="center" prop="credentialNumber" width="150" show-overflow-tooltip/>
|
|
|
|
<el-table-column label="证书过期时间" align="center" prop="credentialExpirationTime" width="120">
|
2023-08-10 21:09:49 +08:00
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.credentialExpirationTime, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2023-08-14 22:51:52 +08:00
|
|
|
<el-table-column label="培训主图" align="center" prop="mainImage" width="200">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<image-preview :src="scope.row.mainImage" :width="50" :height="50"/>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-edit"
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
v-hasPermi="['project:surProjectSpecial:edit']"
|
|
|
|
>修改</el-button>
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-delete"
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
v-hasPermi="['project:surProjectSpecial:remove']"
|
|
|
|
>删除</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
v-show="total>0"
|
|
|
|
:total="total"
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
@pagination="getList"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- 添加或修改项目特种人员对话框 -->
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="项目名称" prop="projectName">
|
|
|
|
<el-input v-model="form.projectName" placeholder="请输入项目名称" disabled/>
|
2023-08-10 21:09:49 +08:00
|
|
|
</el-form-item>
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="人员姓名" prop="name">
|
|
|
|
<el-input v-model="form.name" placeholder="请输入人员姓名" />
|
2023-08-10 21:09:49 +08:00
|
|
|
</el-form-item>
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="性别" prop="sex">
|
|
|
|
<el-select v-model="form.sex" placeholder="请选择性别" style="width: 100%;">
|
|
|
|
<el-option
|
|
|
|
v-for="dict in dict.type.sys_user_sex"
|
|
|
|
:key="dict.value"
|
|
|
|
:label="dict.label"
|
|
|
|
:value="dict.value"
|
|
|
|
></el-option>
|
|
|
|
</el-select>
|
2023-08-10 21:09:49 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="是否有证书" prop="isCredential">
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-select v-model="form.isCredential" placeholder="请选择是否有证书" style="width: 100%;" @change="credentialChange">
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-option
|
|
|
|
v-for="dict in dict.type.sys_yes_no"
|
|
|
|
:key="dict.value"
|
|
|
|
:label="dict.label"
|
|
|
|
:value="dict.value"
|
|
|
|
></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="证书编号" prop="credentialNumber" v-show="credential">
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-input v-model="form.credentialNumber" placeholder="请输入证书编号" />
|
|
|
|
</el-form-item>
|
2023-08-12 21:32:32 +08:00
|
|
|
<el-form-item label="证书过期时间" prop="credentialExpirationTime" v-show="credential">
|
2023-08-10 21:09:49 +08:00
|
|
|
<el-date-picker clearable
|
|
|
|
v-model="form.credentialExpirationTime"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="请选择证书过期时间">
|
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { listSurProjectSpecial, getSurProjectSpecial, delSurProjectSpecial, addSurProjectSpecial, updateSurProjectSpecial } from "@/api/project/surProjectSpecial";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "SurProjectSpecial",
|
2023-08-12 21:32:32 +08:00
|
|
|
dicts: ['sys_yes_no', 'sys_user_sex'],
|
2023-08-10 21:09:49 +08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// 遮罩层
|
|
|
|
loading: true,
|
|
|
|
// 选中数组
|
|
|
|
ids: [],
|
|
|
|
// 非单个禁用
|
|
|
|
single: true,
|
|
|
|
// 非多个禁用
|
|
|
|
multiple: true,
|
|
|
|
// 显示搜索条件
|
|
|
|
showSearch: true,
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
|
|
|
// 项目特种人员表格数据
|
|
|
|
surProjectSpecialList: [],
|
|
|
|
// 弹出层标题
|
|
|
|
title: "",
|
|
|
|
// 是否显示弹出层
|
|
|
|
open: false,
|
|
|
|
// 备注时间范围
|
|
|
|
daterangeCredentialExpirationTime: [],
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
projectId: null,
|
|
|
|
deptId: null,
|
|
|
|
name: null,
|
|
|
|
isCredential: null,
|
|
|
|
credentialExpirationTime: null,
|
|
|
|
isDel: null,
|
2023-08-12 21:32:32 +08:00
|
|
|
projectDeptId: null
|
2023-08-10 21:09:49 +08:00
|
|
|
},
|
2023-08-12 21:32:32 +08:00
|
|
|
depts:null,
|
|
|
|
credential: false,
|
2023-08-10 21:09:49 +08:00
|
|
|
// 表单参数
|
|
|
|
form: {},
|
|
|
|
// 表单校验
|
|
|
|
rules: {
|
2023-08-12 21:32:32 +08:00
|
|
|
name: [
|
|
|
|
{ required: true, message: "请输入人员姓名", trigger: "blur" },
|
|
|
|
{ maxlength: 20, message: "人员姓名最多20字符", trigger: "blur" }
|
|
|
|
],
|
|
|
|
sex: [
|
|
|
|
{ required: true, message: "请选择人员性别", trigger: "blur" }
|
|
|
|
],
|
|
|
|
isCredential: [
|
|
|
|
{ required: true, message: "请选择是否有证书", trigger: "blur" }
|
|
|
|
],
|
|
|
|
credentialNumber: [
|
|
|
|
{ required: false, message: "请输入证书编号", trigger: "blur" },
|
|
|
|
{ maxlength: 50, message: "证书编号最多50字符", trigger: "blur" }
|
|
|
|
],
|
|
|
|
credentialExpirationTime: [
|
|
|
|
{ required: true, message: "请选择证书过期时间", trigger: "blur" }
|
|
|
|
],
|
|
|
|
remark: [
|
|
|
|
{ required: false, message: "请输入备注", trigger: "blur" },
|
|
|
|
{ maxlength: 200, message: "备注最多200字符", trigger: "blur" }
|
|
|
|
]
|
2023-08-10 21:09:49 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList();
|
2023-08-12 21:32:32 +08:00
|
|
|
this.$api.publics.getZgsDeptList().then(d=>{
|
|
|
|
this.depts=d?.data||[];
|
|
|
|
})
|
2023-08-10 21:09:49 +08:00
|
|
|
},
|
|
|
|
methods: {
|
2023-08-12 21:32:32 +08:00
|
|
|
// 是否有证书
|
|
|
|
credentialChange(ev){
|
|
|
|
debugger
|
|
|
|
console.log(ev.value);
|
|
|
|
},
|
2023-08-10 21:09:49 +08:00
|
|
|
/** 查询项目特种人员列表 */
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.queryParams.params = {};
|
|
|
|
if (null != this.daterangeCredentialExpirationTime && '' != this.daterangeCredentialExpirationTime) {
|
|
|
|
this.queryParams.params["beginCredentialExpirationTime"] = this.daterangeCredentialExpirationTime[0];
|
|
|
|
this.queryParams.params["endCredentialExpirationTime"] = this.daterangeCredentialExpirationTime[1];
|
|
|
|
}
|
|
|
|
listSurProjectSpecial(this.queryParams).then(response => {
|
|
|
|
this.surProjectSpecialList = response.rows;
|
|
|
|
this.total = response.total;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 取消按钮
|
|
|
|
cancel() {
|
|
|
|
this.open = false;
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
// 表单重置
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
id: null,
|
|
|
|
projectId: null,
|
|
|
|
deptId: null,
|
|
|
|
name: null,
|
|
|
|
sex: null,
|
|
|
|
age: null,
|
|
|
|
idNumber: null,
|
|
|
|
isCredential: null,
|
|
|
|
credentialNumber: null,
|
|
|
|
credentialExpirationTime: null,
|
|
|
|
isDel: null,
|
|
|
|
createBy: null,
|
|
|
|
createTime: null,
|
|
|
|
updateBy: null,
|
|
|
|
updateTime: null,
|
|
|
|
remark: null
|
|
|
|
};
|
|
|
|
this.resetForm("form");
|
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
handleQuery() {
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
this.daterangeCredentialExpirationTime = [];
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
this.handleQuery();
|
|
|
|
},
|
|
|
|
// 多选框选中数据
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
this.ids = selection.map(item => item.id)
|
|
|
|
this.single = selection.length!==1
|
|
|
|
this.multiple = !selection.length
|
|
|
|
},
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
handleAdd() {
|
|
|
|
this.reset();
|
|
|
|
this.open = true;
|
|
|
|
this.title = "添加项目特种人员";
|
|
|
|
},
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
handleUpdate(row) {
|
|
|
|
this.reset();
|
|
|
|
const id = row.id || this.ids
|
|
|
|
getSurProjectSpecial(id).then(response => {
|
|
|
|
this.form = response.data;
|
2023-08-12 21:32:32 +08:00
|
|
|
if(this.form.isCredential=="Y"){
|
|
|
|
this.credential = true;
|
|
|
|
}else{
|
|
|
|
this.credential = false;
|
|
|
|
}
|
2023-08-10 21:09:49 +08:00
|
|
|
this.open = true;
|
|
|
|
this.title = "修改项目特种人员";
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 提交按钮 */
|
|
|
|
submitForm() {
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
if (valid) {
|
|
|
|
if (this.form.id != null) {
|
|
|
|
updateSurProjectSpecial(this.form).then(response => {
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
addSurProjectSpecial(this.form).then(response => {
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
const ids = row.id || this.ids;
|
|
|
|
this.$modal.confirm('是否确认删除项目特种人员编号为"' + ids + '"的数据项?').then(function() {
|
|
|
|
return delSurProjectSpecial(ids);
|
|
|
|
}).then(() => {
|
|
|
|
this.getList();
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
}).catch(() => {});
|
|
|
|
},
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
handleExport() {
|
|
|
|
this.download('project/surProjectSpecial/export', {
|
|
|
|
...this.queryParams
|
|
|
|
}, `surProjectSpecial_${new Date().getTime()}.xlsx`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|