|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<!-- <el-form
|
|
|
|
:model="queryParams"
|
|
|
|
ref="queryForm"
|
|
|
|
:inline="true"
|
|
|
|
v-show="showSearch"
|
|
|
|
>
|
|
|
|
<el-form-item label="姓名" prop="name">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.name"
|
|
|
|
placeholder="请输入姓名"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="所属机构" prop="affiliatedOrganization">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.affiliatedOrganization"
|
|
|
|
placeholder="请输入所属机构"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="安全职务" prop="securityDuty">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.securityDuty"
|
|
|
|
placeholder="请输入安全职务"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="单位名称" prop="unitName">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.unitName"
|
|
|
|
placeholder="请输入单位名称"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="职务" prop="job">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.job"
|
|
|
|
placeholder="请输入职务"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="资质证书" prop="qualificationCertificate">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.qualificationCertificate"
|
|
|
|
placeholder="请输入资质证书"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="有效期" prop="validity">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.validity"
|
|
|
|
placeholder="请输入有效期"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="证书附件" prop="certificateAttachment">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.certificateAttachment"
|
|
|
|
placeholder="请输入证书附件"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="项目编码" prop="proCode">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.proCode"
|
|
|
|
placeholder="请输入项目编码"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="项目编号" prop="proNo">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.proNo"
|
|
|
|
placeholder="请输入项目编号"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="创建人" prop="createUid">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.createUid"
|
|
|
|
placeholder="请输入创建人"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
|
|
<el-date-picker
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
style="width: 200px"
|
|
|
|
v-model="queryParams.createTime"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="选择创建时间"
|
|
|
|
>
|
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="更新人" prop="updateUid">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.updateUid"
|
|
|
|
placeholder="请输入更新人"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="更新时间" prop="updateTime">
|
|
|
|
<el-date-picker
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
style="width: 200px"
|
|
|
|
v-model="queryParams.updateTime"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="选择更新时间"
|
|
|
|
>
|
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="数源部门" prop="owerDept">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.data.owerDept"
|
|
|
|
placeholder="请输入数源部门"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
slot="append"
|
|
|
|
icon="el-icon-search"
|
|
|
|
size="small"
|
|
|
|
@click="handleQuery"
|
|
|
|
></el-button>
|
|
|
|
</el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button
|
|
|
|
type="cyan"
|
|
|
|
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">
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
icon="el-icon-plus"
|
|
|
|
size="mini"
|
|
|
|
@click="handleAdd"
|
|
|
|
v-hasPermi="['system:person:add']"
|
|
|
|
>新增</el-button
|
|
|
|
>
|
|
|
|
</el-col>
|
|
|
|
<!-- <el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="success"
|
|
|
|
icon="el-icon-edit"
|
|
|
|
size="mini"
|
|
|
|
:disabled="single"
|
|
|
|
@click="handleUpdate"
|
|
|
|
v-hasPermi="['system:person:edit']"
|
|
|
|
>修改</el-button
|
|
|
|
>
|
|
|
|
</el-col> -->
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="danger"
|
|
|
|
icon="el-icon-delete"
|
|
|
|
size="mini"
|
|
|
|
:disabled="multiple"
|
|
|
|
@click="handleDelete"
|
|
|
|
v-hasPermi="['system:person:remove']"
|
|
|
|
>删除</el-button
|
|
|
|
>
|
|
|
|
</el-col>
|
|
|
|
<!-- <el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="warning"
|
|
|
|
icon="el-icon-download"
|
|
|
|
size="mini"
|
|
|
|
@click="handleExport"
|
|
|
|
v-hasPermi="['system:person:export']"
|
|
|
|
>导出</el-button
|
|
|
|
>
|
|
|
|
</el-col> -->
|
|
|
|
<right-toolbar
|
|
|
|
:showSearch.sync="showSearch"
|
|
|
|
@queryTable="getList"
|
|
|
|
></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
v-loading="loading"
|
|
|
|
:data="personList"
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
>
|
|
|
|
<el-table-column type="selection" width="55" align="center" fixed />
|
|
|
|
<el-table-column
|
|
|
|
label="序号"
|
|
|
|
type="index"
|
|
|
|
width="50"
|
|
|
|
align="center"
|
|
|
|
fixed
|
|
|
|
/>
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
label="姓名"
|
|
|
|
align="center"
|
|
|
|
prop="name"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="所属机构"
|
|
|
|
align="center"
|
|
|
|
prop="affiliatedOrganization"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="安全职务"
|
|
|
|
align="center"
|
|
|
|
prop="securityDuty"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="单位名称"
|
|
|
|
align="center"
|
|
|
|
prop="unitName"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column label="职务" align="center" prop="job" min-width="120" />
|
|
|
|
<el-table-column
|
|
|
|
label="资质证书"
|
|
|
|
align="center"
|
|
|
|
prop="qualificationCertificate"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="有效期"
|
|
|
|
align="center"
|
|
|
|
prop="validity"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="证书附件"
|
|
|
|
align="center"
|
|
|
|
prop="certificateAttachment"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="项目编码"
|
|
|
|
align="center"
|
|
|
|
prop="proCode"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="项目编号"
|
|
|
|
align="center"
|
|
|
|
prop="proNo"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="创建人"
|
|
|
|
align="center"
|
|
|
|
prop="createUid"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="创建时间"
|
|
|
|
align="center"
|
|
|
|
prop="createTime"
|
|
|
|
min-width="120"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.createTime, "{y}-{m}-{d}") }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="更新人"
|
|
|
|
align="center"
|
|
|
|
prop="updateUid"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="更新时间"
|
|
|
|
align="center"
|
|
|
|
prop="updateTime"
|
|
|
|
min-width="120"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.updateTime, "{y}-{m}-{d}") }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="数源部门"
|
|
|
|
align="center"
|
|
|
|
prop="owerDept"
|
|
|
|
min-width="120"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
label="操作"
|
|
|
|
align="center"
|
|
|
|
class-name="small-padding fixed-width"
|
|
|
|
width="180"
|
|
|
|
fixed="right"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-edit"
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
v-hasPermi="['system:person:edit']"
|
|
|
|
>修改</el-button
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-delete"
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
v-hasPermi="['system:person: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="1200px"
|
|
|
|
append-to-body
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
>
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
|
<el-form-item label="姓名" prop="name">
|
|
|
|
<el-input v-model="form.name" placeholder="请输入姓名" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="所属机构" prop="affiliatedOrganization">
|
|
|
|
<el-input
|
|
|
|
v-model="form.affiliatedOrganization"
|
|
|
|
placeholder="请输入所属机构"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="安全职务" prop="securityDuty">
|
|
|
|
<el-input v-model="form.securityDuty" placeholder="请输入安全职务" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="单位名称" prop="unitName">
|
|
|
|
<el-input v-model="form.unitName" placeholder="请输入单位名称" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="职务" prop="job">
|
|
|
|
<el-input v-model="form.job" placeholder="请输入职务" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="资质证书" prop="qualificationCertificate">
|
|
|
|
<el-input
|
|
|
|
v-model="form.qualificationCertificate"
|
|
|
|
placeholder="请输入资质证书"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="有效期" prop="validity">
|
|
|
|
<el-input v-model="form.validity" placeholder="请输入有效期" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="证书附件" prop="certificateAttachment">
|
|
|
|
<el-input
|
|
|
|
v-model="form.certificateAttachment"
|
|
|
|
placeholder="请输入证书附件"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="项目编码" prop="proCode">
|
|
|
|
<el-input v-model="form.proCode" placeholder="请输入项目编码" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="项目编号" prop="proNo">
|
|
|
|
<el-input v-model="form.proNo" placeholder="请输入项目编号" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="创建人" prop="createUid">
|
|
|
|
<el-input v-model="form.createUid" placeholder="请输入创建人" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="更新人" prop="updateUid">
|
|
|
|
<el-input v-model="form.updateUid" placeholder="请输入更新人" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="数源部门" prop="owerDept">
|
|
|
|
<el-input v-model="form.owerDept" 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 {
|
|
|
|
listPerson,
|
|
|
|
getPerson,
|
|
|
|
delPerson,
|
|
|
|
addPerson,
|
|
|
|
updatePerson,
|
|
|
|
exportPerson,
|
|
|
|
} from "@/api/build/person";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "Person",
|
|
|
|
props: ["proNo", "proCode"],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// 遮罩层
|
|
|
|
loading: true,
|
|
|
|
// 选中数组
|
|
|
|
ids: [],
|
|
|
|
// 非单个禁用
|
|
|
|
single: true,
|
|
|
|
// 非多个禁用
|
|
|
|
multiple: true,
|
|
|
|
// 显示搜索条件
|
|
|
|
showSearch: true,
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
|
|
|
// 项目安全生产管理机构人员信息表格数据
|
|
|
|
personList: [],
|
|
|
|
// 弹出层标题
|
|
|
|
title: "",
|
|
|
|
// 是否显示弹出层
|
|
|
|
open: false,
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
ids: null,
|
|
|
|
data: {
|
|
|
|
name: null,
|
|
|
|
affiliatedOrganization: null,
|
|
|
|
securityDuty: null,
|
|
|
|
unitName: null,
|
|
|
|
job: null,
|
|
|
|
qualificationCertificate: null,
|
|
|
|
validity: null,
|
|
|
|
certificateAttachment: null,
|
|
|
|
proCode: null,
|
|
|
|
proNo: null,
|
|
|
|
createUid: null,
|
|
|
|
createTime: null,
|
|
|
|
updateUid: null,
|
|
|
|
updateTime: null,
|
|
|
|
owerDept: null,
|
|
|
|
},
|
|
|
|
// 排序方式
|
|
|
|
params: {
|
|
|
|
// 按哪个字段排序
|
|
|
|
orderBy: "create_time",
|
|
|
|
// desc降序,升序asc
|
|
|
|
sortBy: "desc",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 表单参数
|
|
|
|
form: {},
|
|
|
|
// 表单校验
|
|
|
|
rules: {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/** 查询项目安全生产管理机构人员信息列表 */
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.queryParams.data.proNo = this.proNo;
|
|
|
|
listPerson(this.queryParams).then((response) => {
|
|
|
|
this.personList = response.records;
|
|
|
|
this.total = response.total;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 取消按钮
|
|
|
|
cancel() {
|
|
|
|
this.open = false;
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
// 表单重置
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
id: null,
|
|
|
|
name: null,
|
|
|
|
affiliatedOrganization: null,
|
|
|
|
securityDuty: null,
|
|
|
|
unitName: null,
|
|
|
|
job: null,
|
|
|
|
qualificationCertificate: null,
|
|
|
|
validity: null,
|
|
|
|
certificateAttachment: null,
|
|
|
|
proCode: null,
|
|
|
|
proNo: null,
|
|
|
|
createUid: null,
|
|
|
|
createTime: null,
|
|
|
|
updateUid: null,
|
|
|
|
updateTime: null,
|
|
|
|
owerDept: null,
|
|
|
|
};
|
|
|
|
this.resetForm("form");
|
|
|
|
},
|
|
|
|
// 查询表单重置
|
|
|
|
resetQueryForm() {
|
|
|
|
this.queryParams = {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
data: {
|
|
|
|
id: null,
|
|
|
|
name: null,
|
|
|
|
affiliatedOrganization: null,
|
|
|
|
securityDuty: null,
|
|
|
|
unitName: null,
|
|
|
|
job: null,
|
|
|
|
qualificationCertificate: null,
|
|
|
|
validity: null,
|
|
|
|
certificateAttachment: null,
|
|
|
|
proCode: null,
|
|
|
|
proNo: null,
|
|
|
|
createUid: null,
|
|
|
|
createTime: null,
|
|
|
|
updateUid: null,
|
|
|
|
updateTime: null,
|
|
|
|
owerDept: null,
|
|
|
|
},
|
|
|
|
// 排序方式
|
|
|
|
params: {
|
|
|
|
// 按哪个字段排序
|
|
|
|
orderBy: "create_time",
|
|
|
|
// desc降序,升序asc
|
|
|
|
sortBy: "desc",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
this.resetForm("form");
|
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
handleQuery() {
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
this.resetQueryForm();
|
|
|
|
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;
|
|
|
|
getPerson(id).then((response) => {
|
|
|
|
this.form = response.data;
|
|
|
|
this.open = true;
|
|
|
|
this.title = "修改项目安全生产管理机构人员信息";
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 提交按钮 */
|
|
|
|
submitForm() {
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
if (valid) {
|
|
|
|
this.form.proNo = this.proNo;
|
|
|
|
if (this.form.id != null) {
|
|
|
|
updatePerson(this.form).then((response) => {
|
|
|
|
if (response.code === 200) {
|
|
|
|
this.msgSuccess("修改成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
addPerson(this.form).then((response) => {
|
|
|
|
if (response.code === 200) {
|
|
|
|
this.msgSuccess("新增成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
const ids = row.id || this.ids;
|
|
|
|
if (ids) {
|
|
|
|
this.$confirm("是否删除选中的数据?", "警告", {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
type: "warning",
|
|
|
|
})
|
|
|
|
.then(function () {
|
|
|
|
return delPerson(ids);
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
this.getList();
|
|
|
|
this.msgSuccess("删除成功");
|
|
|
|
})
|
|
|
|
.catch(function () {});
|
|
|
|
} else {
|
|
|
|
this.$message.warning("请选择要删除的数据!!");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
handleExport() {
|
|
|
|
const queryParams = this.queryParams;
|
|
|
|
let message = "是否确认导出所有的数据项?";
|
|
|
|
if (this.ids) {
|
|
|
|
message = "是否确认导出选中的数据项?";
|
|
|
|
queryParams.ids = this.ids;
|
|
|
|
}
|
|
|
|
this.$confirm(message, "警告", {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
type: "warning",
|
|
|
|
})
|
|
|
|
.then(function () {
|
|
|
|
return exportPerson(queryParams);
|
|
|
|
})
|
|
|
|
.then((response) => {
|
|
|
|
this.downloadFile(response, true, response.msg);
|
|
|
|
// this.download(response.msg);
|
|
|
|
})
|
|
|
|
.catch(function () {});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import "@/assets/css/dialog.scss";
|
|
|
|
//::v-deep {
|
|
|
|
// .el-dialog {
|
|
|
|
// margin-top: 10vh !important;
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
</style>
|