1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item :label="$t('员工姓名')" prop="name">
- <el-input
- v-model="queryParams.name"
- :placeholder="$t('请输入') + $t('员工姓名')"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item :label="$t('性别')" prop="sexs">
- <el-select v-model="queryParams.sexs" :placeholder="$t('请选择') + $t('性别')" clearable size="small" multiple>
- <el-option
- v-for="dict in sexOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('部门')" prop="units">
- <el-select v-model="units" :placeholder="$t('请选择') + $t('部门')" clearable size="small" multiple>
- <el-option
- v-for="dict in unitOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('班值')" prop="teams">
- <el-select v-model="teams" :placeholder="$t('请选择') + $t('班值')" clearable size="small" multiple>
- <el-option
- v-for="dict in teamOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('实际岗位')" prop="actualposts" label-width="200">
- <el-select v-model="actualposts" :placeholder="$t('请选择') + $t('实际岗位')" clearable size="small" multiple>
- <el-option
- v-for="dict in actualpostOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('学历')" prop="educations" label-width="200">
- <el-select v-model="educations" :placeholder="$t('请选择') + $t('学历')" clearable size="small" multiple>
- <el-option
- v-for="dict in educationOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('英语能力')" prop="enAbilitys" label-width="200">
- <el-select v-model="enAbilitys" :placeholder="$t('请选择') + $t('英语能力')" clearable size="small" multiple>
- <el-option
- v-for="dict in enAbilityOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">{{ $t('搜索') }}</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">{{ $t('重置') }}</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="['plant:staffmgr:add']"
- >{{ $t('新增') }}</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="['plant:staffmgr:edit']"
- >{{ $t('修改') }}</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="['plant:staffmgr:remove']"
- >{{ $t('删除') }}</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="info"
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['plant:staffmgr:edit']"
- >{{ $t('导入') }}</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['plant:staffmgr:export']"
- >{{ $t('导出') }}</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-s-data"
- size="mini"
- @click="handleData"
- >{{ $t('数据分析') }}</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- icon="el-icon-s-release"
- size="mini"
- @click="handleLeft"
- >{{ $t('离职名单') }}</el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="staffmgrList" @selection-change="handleSelectionChange" :height="clientHeight" border>
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column :label="$t('装置名称')" align="center" prop="plantCode" :formatter="plantCodeFormat" />
- <el-table-column :label="$t('员工编号')" align="center" prop="staffid" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('员工姓名')" align="center" prop="name" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('性别')" align="center" prop="sex" :formatter="sexFormat" />
- <el-table-column :label="$t('出生日期')" align="center" prop="birthday" width="100">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.birthday, '{y}-{m}-{d}') }}</span>
- </template>
- </el-table-column>
- <el-table-column :label="$t('部门')" align="center" prop="unit" :formatter="unitFormat" />
- <el-table-column :label="$t('班值')" align="center" prop="team" :formatter="teamFormat" />
- <el-table-column :label="$t('实际岗位')" align="center" prop="actualpost" width="120" :formatter="actualpostFormat" />
- <el-table-column :label="$t('联系方式')" align="center" prop="contact" width="150" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('学历')" align="center" prop="education" :formatter="educationFormat" />
- <el-table-column :label="$t('英语能力')" align="center" prop="enAbility" :formatter="enAbilityFormat" />
- <el-table-column :label="$t('邮箱')" align="center" prop="mail" width="230" :show-overflow-tooltip="true"/>
- <!--<el-table-column :label="$t('隐患查找数量')" align="center" prop="accidentNum" width="100" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('技能评估得分')" align="center" prop="skillScore" width="100" :show-overflow-tooltip="true"/>-->
- <el-table-column :label="$t('备注')" align="center" prop="remarks" :show-overflow-tooltip="true"/>
- <!--<el-table-column label="特殊职能" align="center" prop="specialDuty" :formatter="specialDutyFormat" />-->
- <el-table-column :label="$t('操作')" align="center" fixed="right" width="220" 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="['plant:staffmgr:edit']"
- >{{ $t('修改') }}</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['plant:staffmgr:remove']"
- >{{ $t('删除') }}</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-s-release"
- @click="handleLeftDelete(scope.row)"
- v-hasPermi="['plant:staffmgr:remove']"
- >{{ $t('离职') }}</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-document"
- @click="handleDoc(scope.row)"
- v-hasPermi="['plant:staffmgr:edit']"
- >{{ $t('附件') }}</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 v-dialogDrag ref="dialog__wrapper" :title="title" :visible.sync="open" width="700px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('装置名称')" prop="plantCode">
- <el-select v-model="form.plantCode" :placeholder="$t('请选择') + $t('装置名称')">
- <el-option
- v-for="dict in plantCodeOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item :label="$t('员工编号')" prop="staffid">
- <el-input v-model="form.staffid" :placeholder="$t('请输入') + $t('员工编号')" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('员工姓名')" prop="name">
- <el-input v-model="form.name" :placeholder="$t('请输入') + $t('员工姓名')" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item :label="$t('性别')" prop="sex">
- <el-select v-model="form.sex" :placeholder="$t('请选择') + $t('性别')">
- <el-option
- v-for="dict in sexOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('出生日期')" prop="birthday">
- <el-date-picker clearable size="small" style="width: 200px"
- v-model="form.birthday"
- type="date"
- value-format="yyyy-MM-dd"
- :placeholder="$t('请选择') + $t('出生日期')">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item :label="$t('部门')" prop="unit">
- <el-select v-model="form.unit" :placeholder="$t('请选择') + $t('部门')">
- <el-option
- v-for="dict in unitOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('班值')" prop="team">
- <el-select v-model="form.team" :placeholder="$t('请选择') + $t('班值')">
- <el-option
- v-for="dict in teamOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item :label="$t('实际岗位')" prop="actualpost">
- <el-select v-model="form.actualpost" :placeholder="$t('请选择') + $t('实际岗位')">
- <el-option
- v-for="dict in actualpostOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('联系方式')" prop="contact">
- <el-input v-model="form.contact" :placeholder="$t('请输入') + $t('联系方式')" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item :label="$t('学历')" prop="educations">
- <el-select v-model="form.education" :placeholder="$t('请选择') + $t('学历')">
- <el-option
- v-for="dict in educationOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('英语能力')" prop="enAbility">
- <el-select v-model="form.enAbility" :placeholder="$t('请选择') + $t('英语能力')">
- <el-option
- v-for="dict in enAbilityOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item :label="$t('邮箱')" prop="mail">
- <el-input v-model="form.mail" :placeholder="$t('请输入') + $t('邮箱')" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('上级领导')" prop="pId">
- <treeselect v-model="form.pId" :options="pIdOptions" :normalizer="normalizer" :placeholder="$t('请选择') + $t('上级领导')" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item :label="$t('归属部门')" prop="deptId">
- <treeselect v-model="form.deptId" :options="deptOptions" :show-count="true" :placeholder="$t('请选择') + $t('归属部门')" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('备注')" prop="remarks">
- <el-input v-model="form.remarks" :placeholder="$t('请输入') + $t('备注')" type="textarea" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <!--<el-form-item label="证件照" prop="photo">
- <el-upload
- ref="photo"
- class="avatar-uploader"
- :headers="photo.headers"
- :action="photo.url + '?pType=' + photo.pType + '&pId=' + photo.pId"
- :show-file-list="false"
- :on-progress="handleAvatarProgress"
- :on-success="handleAvatarSuccess"
- :auto-upload="false"
- >
- <img v-if="form.photo" :src="photoUrl" class="avatar">
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
- </el-upload>
- </el-form-item>-->
- <el-form-item :label="$t('证件照')" prop="photo" v-if="notPhoto === true">
- <el-upload
- ref="photo"
- :headers="photo.headers"
- :action="photo.url + '?pType=' + photo.pType + '&pId=' + photo.pId"
- :show-file-list="false"
- :on-success="handleAvatarSuccess"
- list-type="picture-card">
- <img v-if="photoUrl" :src="photoUrl" class="avatar">
- <i v-else class="el-icon-plus "></i>
- </el-upload>
- <el-dialog v-dialogDrag :visible.sync="dialogVisible" append-to-body>
- <img width="100%" :src="dialogImageUrl" alt="">
- </el-dialog>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item :label="$t('特殊职能')" prop="specialDuty">
- <el-select v-model="specialDutys" multiple :placeholder="$t('请选择') + $t('特殊职能')">
- <el-option
- v-for="dict in specialDutyOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">{{ $t('确 定') }}</el-button>
- <el-button @click="cancel">{{ $t('取 消') }}</el-button>
- </div>
- </el-dialog>
- <!-- 用户导入对话框 -->
- <el-dialog v-dialogDrag :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
- <el-upload
- ref="upload"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="upload.headers"
- :action="upload.url"
- :disabled="upload.isUploading"
- :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- {{ $t('将文件拖到此处,或') }}
- <em>{{ $t('点击上传') }}</em>
- </div>
- <div class="el-upload__tip" slot="tip">
- <!--<el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据-->
- <el-link type="info" style="font-size:12px" @click="importTemplate">{{ $t('下载模板') }}</el-link>
- </div>
- <form ref="downloadFileForm" :action="upload.downloadAction" target="FORMSUBMIT">
- <input name="type" :value="upload.type" hidden />
- </form>
- <div class="el-upload__tip" style="color:red" slot="tip">{{ $t('提示:仅允许导入“xls”或“xlsx”格式文件!') }}</div>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileForm">{{ $t('确 定') }}</el-button>
- <el-button @click="upload.open = false">{{ $t('取 消') }}</el-button>
- </div>
- </el-dialog>
- <!-- 报告附件对话框 -->
- <el-dialog v-dialogDrag :title="doc.title" :visible.sync="doc.open" width="700px" append-to-body>
- <el-upload
- ref="doc"
- :limit="50"
- :headers="doc.headers"
- :action="doc.url + '?pType=' + doc.pType + '&pId=' + doc.pId"
- :disabled="doc.isUploading"
- :on-progress="handleFileDocProgress"
- :on-success="handleFileDocSuccess"
- :auto-upload="true"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- {{ $t('将文件拖到此处,或') }}
- <em>{{ $t('点击上传') }}</em>
- </div>
- </el-upload>
- <el-table :data="doc.commonfileList" border>
- <el-table-column :label="$t('文件名')" align="center" prop="fileName" :show-overflow-tooltip="true">
- <template slot-scope="scope">
- <a class="link-type" @click="handleDownload(scope.row)">
- <span>{{ scope.row.fileName }}</span>
- </a>
- </template>
- </el-table-column>
- <el-table-column :label="$t('大小(Kb)')" align="center" prop="fileSize" :show-overflow-tooltip="true" width="80" />
- <el-table-column :label="$t('上传人')" align="center" prop="creator" :show-overflow-tooltip="true" width="120"/>
- <el-table-column :label="$t('操作')" align="center" width="120" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- v-if="scope.row.fileName.endsWith('pdf')"
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSee(scope.row)"
- >{{ $t('预览') }}</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-download"
- @click="handleDownload(scope.row)"
- >{{ $t('下载') }}</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDeleteDoc(scope.row)"
- >{{ $t('删除') }}</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-dialog v-dialogDrag :title="pdf.title" :visible.sync="pdf.open" width="1700px" append-to-body>
- <div style="margin-top: -60px;float: right;margin-right: 40px;">
- <el-button size="mini" type="text" @click="openPdf">{{$t('新页面打开PDF')}}</el-button></div>
- <div style="margin-top: -30px">
- <iframe :src="pdf.pdfUrl" frameborder="0" width="100%" height="700px"></iframe>
- </div>
- </el-dialog>
- <div slot="footer" class="dialog-footer">
- <!-- <el-button type="primary" @click="submitFileForm">{{ $t('确 定') }}</el-button>-->
- <el-button @click="doc.open = false">{{ $t('返 回') }}</el-button>
- </div>
- </el-dialog>
- <!-- 离职人员对话框 -->
- <el-dialog v-dialogDrag :title="left.title" :visible.sync="left.open" width="700px" append-to-body>
- <el-table :data="left.staffmgrList" border>
- <el-table-column :label="$t('装置名称')" align="center" prop="plantCode" :formatter="plantCodeFormat" />
- <el-table-column :label="$t('员工编号')" align="center" prop="staffid" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('员工姓名')" align="center" prop="name" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('操作')" align="center" width="120" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- @click="handleReLeft(scope.row)"
- >{{ $t('复职') }}</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div slot="footer" class="dialog-footer">
- <!-- <el-button type="primary" @click="submitFileForm">{{ $t('确 定') }}</el-button>-->
- <el-button @click="left.open = false">{{ $t('返 回') }}</el-button>
- </div>
- </el-dialog>
- <el-drawer
- :title="$t('数据分析')"
- size="600px"
- :visible.sync="drawer"
- :direction="direction">
- <el-row>
- <el-col>
- <el-card class="box-card" shadow="hover">
- <div slot="header" class="clearfix">
- <span>{{ $t('学历统计') }}</span>
- </div>
- <div class="text item">
- <edu-chart> </edu-chart>
- </div>
- </el-card>
- </el-col>
- </el-row>
- <el-row>
- <el-col>
- <el-card class="box-card" shadow="hover">
- <div slot="header" class="clearfix">
- <span>{{ $t('英语统计') }}</span>
- </div>
- <div class="text item">
- <eng-chart> </eng-chart>
- </div>
- </el-card>
- </el-col>
- </el-row>
- <el-row>
- <el-col>
- <el-card class="box-card" shadow="hover">
- <div slot="header" class="clearfix">
- <span>{{ $t('班值统计') }}</span>
- </div>
- <div class="text item">
- <team-chart> </team-chart>
- </div>
- </el-card>
- </el-col>
- </el-row>
- </el-drawer>
- </div>
- </template>
- <script>
- import { listStaffmgr, listpIdStaffmgr, listLeftStaffmgr, getStaffmgr, delStaffmgr, delLeftStaffmgr,reLeftStaffmgr ,addStaffmgr, updateStaffmgr, exportStaffmgr } from "@/api/plant/staffmgr";
- import { allFileList, listCommonfile, getCommonfile, delCommonfile, addCommonfile, updateCommonfile, exportCommonfile} from "@/api/common/commonfile";
- import { treeselect } from "@/api/system/dept";
- import { getToken } from "@/utils/auth";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import EduChart from "./eduChart";
- import EngChart from "./engChart";
- import TeamChart from "./teamChart";
- export default {
- name: "Staffmgr",
- components: {TeamChart, EngChart, EduChart, Treeselect },
- data() {
- return {
- drawer: false,
- direction: 'rtl',
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: false,
- // 总条数
- total: 0,
- // 人员管理表格数据
- staffmgrList: [],
- //目标措施树选项
- pIdOptions: [],
- // 弹出层标题
- title: "",
- // 部门树选项
- deptOptions: undefined,
- clientHeight:300,
- // 是否显示弹出层
- open: false,
- // 装置名称字典
- plantCodeOptions: [],
- // 性别字典
- sexOptions: [],
- // 部门字典
- unitOptions: [],
- // 班值字典
- teamOptions: [],
- // 实际岗位字典
- actualpostOptions: [],
- // 学历字典
- educationOptions: [],
- // 英语能力字典
- enAbilityOptions: [],
- // 特殊职能字典
- specialDutyOptions: [],
- //照片url
- photoUrl: '',
- //新增不可上传照片
- notPhoto: false,
- // 用户导入参数
- upload: {
- downloadAction: process.env.VUE_APP_BASE_API + '/common/template',
- //下载模板类型
- type: "staffmgr",
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/plant/staffmgr/importData"
- },
- // 报告附件参数
- doc: {
- file: "",
- // 是否显示弹出层(报告附件)
- open: false,
- // 弹出层标题(报告附件)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 报告附件上传位置编号
- ids: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/common/commonfile/uploadFile",
- commonfileList: null,
- queryParams: {
- pId: null,
- pType: 'staffmgr'
- },
- pType: 'staffmgr',
- pId: null
- },
- // 人员证件照参数
- photo: {
- file: "",
- // 报告附件上传位置编号
- ids: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/plant/staffmgr/uploadPhoto",
- pType: 'staffmgrPhoto',
- pId: null
- },
- //证件照回显
- dialogImageUrl: '',
- dialogVisible: false,
- pdf : {
- title: '',
- pdfUrl: '',
- numPages: null,
- open: false,
- pageNum: 1,
- pageTotalNum: 1,
- loadedRatio: 0,
- },
- // 离职人员
- left: {
- file: "",
- // 是否显示弹出层(报告附件)
- open: false,
- // 弹出层标题(报告附件)
- title: "",
- staffmgrList: []
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 20,
- name: null,
- sexs: null,
- sex: [],
- unit: null,
- team: null,
- actualpost: null,
- education: null,
- enAbility: null,
- educations: null,
- units: null,
- teams: null,
- actualposts: null,
- enAbilitys: null,
- photo: null
- },
- querypIdParams: {
- units: '10,18',
- },
- educations: [],
- units: [],
- teams: [],
- actualposts: [],
- enAbilitys: [],
- specialDutys: [],
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- plantCode: [
- { required: true, message: this.$t('装置名称') + this.$t('不能为空'), trigger: "change" }
- ],
- staffid: [
- { required: true, message: this.$t('员工编号') + this.$t('不能为空'), trigger: "blur" }
- ],
- name: [
- { required: true, message: this.$t('员工姓名') + this.$t('不能为空'), trigger: "blur" }
- ],
- sex: [
- { required: true, message: this.$t('性别') + this.$t('不能为空'), trigger: "change" }
- ],
- unit: [
- { required: true, message: this.$t('部门') + this.$t('不能为空'), trigger: "change" }
- ],
- team: [
- { required: true, message: this.$t('班值') + this.$t('不能为空'), trigger: "change" }
- ],
- actualpost: [
- { required: true, message: this.$t('实际岗位') + this.$t('不能为空'), trigger: "change" }
- ],
- pId: [
- { required: true, message: this.$t('上级领导') + this.$t('不能为空'), trigger: "change" }
- ],
- deptId: [
- { required: true, message: this.$t('归属部门') + this.$t('不能为空'), trigger: "change" }
- ],
- }
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val);
- }
- },
- created() {
- //设置表格高度对应屏幕高度
- this.$nextTick(() => {
- this.clientHeight = (document.body.clientHeight - 80) * 0.8
- })
- this.getList();
- this.getpIdTreeselect();
- this.getTreeselect();
- this.getDicts("PLANT_DIVIDE").then(response => {
- this.plantCodeOptions = response.data;
- });
- this.getDicts("sys_user_sex").then(response => {
- this.sexOptions = response.data;
- });
- this.getDicts("STAFF_UNIT").then(response => {
- this.unitOptions = response.data;
- });
- this.getDicts("TEAM_DIVIDE").then(response => {
- this.teamOptions = response.data;
- });
- this.getDicts("ACTUALPOST").then(response => {
- this.actualpostOptions = response.data;
- });
- this.getDicts("EDUCATION").then(response => {
- this.educationOptions = response.data;
- });
- this.getDicts("ENGLISHABILITY").then(response => {
- this.enAbilityOptions = response.data;
- });
- this.getDicts("SPECIAL_DUTY").then(response => {
- this.specialDutyOptions = response.data;
- });
- },
- methods: {
- /** 查询人员管理列表 */
- getList() {
- this.loading = true;
- this.queryParams.educations = this.educations.join()
- this.queryParams.units = this.units.join()
- this.queryParams.teams = this.teams.join()
- this.queryParams.actualposts = this.actualposts.join()
- this.queryParams.enAbilitys = this.enAbilitys.join()
- listStaffmgr(this.queryParams).then(response => {
- this.staffmgrList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- /** 查询部门下拉树结构 */
- getTreeselect() {
- treeselect().then(response => {
- this.deptOptions = response.data;
- });
- },
- /** 转换目标录入数据结构 */
- normalizer(node) {
- if (node.children && !node.children.length) {
- delete node.children;
- }
- return {
- id: node.id,
- label: node.name,
- children: node.children
- };
- },
- // 装置名称字典翻译
- plantCodeFormat(row, column) {
- return this.selectDictLabel(this.plantCodeOptions, row.plantCode);
- },
- // 性别字典翻译
- sexFormat(row, column) {
- return this.selectDictLabel(this.sexOptions, row.sex);
- },
- // 部门字典翻译
- unitFormat(row, column) {
- return this.selectDictLabel(this.unitOptions, row.unit);
- },
- // 班值字典翻译
- teamFormat(row, column) {
- return this.selectDictLabel(this.teamOptions, row.team);
- },
- // 实际岗位字典翻译
- actualpostFormat(row, column) {
- return this.selectDictLabel(this.actualpostOptions, row.actualpost);
- },
- // 学历字典翻译
- educationFormat(row, column) {
- return this.selectDictLabel(this.educationOptions, row.education);
- },
- // 英语能力字典翻译
- enAbilityFormat(row, column) {
- return this.selectDictLabel(this.enAbilityOptions, row.enAbility);
- },
- // 特殊职能字典翻译
- specialDutyFormat(row, column) {
- return this.selectDictLabel(this.specialDutyOptions, row.specialDuty);
- },
- /** 查询列表下拉树结构 */
- getpIdTreeselect() {
- listpIdStaffmgr(this.querypIdParams).then(response => {
- this.pIdOptions = [];
- const data = { id: 0, name: this.$t('顶级节点'), children: [] };
- data.children = this.handleTree(response.data, "id", "pId");
- this.pIdOptions.push(data);
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.photoUrl= '';
- this.form = {
- id: null,
- plantCode: null,
- staffid: null,
- name: null,
- sex: null,
- birthday: null,
- unit: null,
- team: null,
- actualpost: null,
- contact: null,
- education: null,
- enAbility: null,
- accidentNum: null,
- mail: null,
- delFlag: null,
- createrCode: null,
- photoUrl: '',
- createdate: null,
- updaterCode: null,
- updatedate: null,
- deptId: null,
- skillScore: null,
- remarks: null,
- photo: null,
- pId: null,
- specialDuty: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.educations = []
- this.units = []
- this.teams = []
- this.actualposts = []
- this.enAbilitys = []
- 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.notPhoto = false;
- this.title = this.$t('新增') + " " + this.$t('人员管理');
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const id = row.id || this.ids
- getStaffmgr(id).then(response => {
- this.form = response.data;
- if (response.data.photo) {
- this.photoUrl = process.env.VUE_APP_BASE_API + response.data.photo;
- }
- this.open = true;
- this.notPhoto = true;
- this.title = this.$t('修改') + this.$t('人员管理');
- });
- this.photo.pId = row.id;
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- /*this.$refs.photo.submit();*/
- this.form.specialDuty = this.specialDutys.join();
- if (this.form.id != null) {
- updateStaffmgr(this.form).then(response => {
- this.msgSuccess(this.$t('修改成功'));
- this.open = false;
- this.getList();
- });
- } else {
- addStaffmgr(this.form).then(response => {
- this.msgSuccess(this.$t('新增成功'));
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$confirm(this.$t('是否确认删除?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function() {
- return delStaffmgr(ids);
- }).then(() => {
- this.getList();
- this.msgSuccess(this.$t('删除成功'));
- })
- },
- /** 删除按钮操作 */
- handleLeftDelete(row) {
- const ids = row.id;
- this.$confirm(this.$t('是否确认离职?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function() {
- return delLeftStaffmgr(ids);
- }).then(() => {
- this.getList();
- this.msgSuccess(this.$t('离职成功'));
- })
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm(this.$t('是否确认导出所有人员管理数据项?'), this.$t('提示'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function() {
- return exportStaffmgr(queryParams);
- }).then(response => {
- this.download(response.msg);
- })
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = this.$t('用户导入');
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- this.$refs['downloadFileForm'].submit()
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- if (response.data[0] != null) {
- this.$alert(this.$t('成功导入') + response.msg + this.$t('条数据') + "," + this.$t('第') + response.data + this.$t('行数据出现错误导入失败')+"。", this.$t('导入结果'), { dangerouslyUseHTMLString: true });
- }else {
- this.$alert(this.$t('成功导入') + response.msg + this.$t('条数据'), this.$t('导入结果'), { dangerouslyUseHTMLString: true });
- }
- this.getList();
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- },
- /** 报告附件按钮操作 */
- handleDoc(row) {
- this.doc.id = row.id;
- this.doc.title = row.name + "的相关附件";
- this.doc.open = true;
- this.doc.queryParams.pId = row.id
- this.doc.pId = row.id
- this.getFileList()
- this.$nextTick(() => {
- this.$refs.doc.clearFiles()
- })
- },
- getFileList (){
- allFileList(this.doc.queryParams).then(response => {
- this.doc.commonfileList = response;
- });
- },
- //附件上传中处理
- handleFileDocProgress(event, file, fileList) {
- this.doc.file = file;
- this.doc.isUploading = true;
- },
- //附件上传成功处理
- handleFileDocSuccess(response, file, fileList) {
- this.doc.isUploading = false;
- this.$alert(response.msg, this.$t('导入结果'), { dangerouslyUseHTMLString: true });
- this.getFileList()
- },
- /** 删除按钮操作 */
- handleDeleteDoc(row) {
- const ids = row.id || this.ids;
- this.$confirm(this.$t('是否确认删除?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function() {
- return delCommonfile(ids);
- }).then(() => {
- this.getFileList()
- this.msgSuccess(this.$t('删除成功'));
- })
- },
- // 文件下载处理
- handleDownload(row) {
- var name = row.fileName;
- var url = row.fileUrl;
- var suffix = url.substring(url.lastIndexOf("."), url.length);
- const a = document.createElement('a')
- a.setAttribute('download', name)
- a.setAttribute('target', '_blank')
- a.setAttribute('href', process.env.VUE_APP_BASE_API + url)
- a.click()
- },
- openPdf(){
- window.open(this.pdf.pdfUrl);//path是文件的全路径地址
- },
- handleSee (row){
- this.pdf.open =true
- this.pdf.title = row.fileName
- this.pdf.pdfUrl = process.env.VUE_APP_BASE_API +'/pdf/web/viewer.html?file=' + process.env.VUE_APP_BASE_API + row.fileUrl
- },
- handleLeft(){
- this.left.open = true;
- this.left.title = this.$t('离职人员信息');
- this.getLeftData();
- },
- getLeftData(){
- listLeftStaffmgr().then(response => {
- this.left.staffmgrList = response;
- });
- },
- handleReLeft(row){
- const ids = row.id;
- this.$confirm(this.$t('是否确认复职?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function() {
- return reLeftStaffmgr(ids);
- }).then(() => {
- this.getLeftData();
- this.getList();
- this.msgSuccess(this.$t('复职成功'));
- })
- },
- //数据分析
- handleData(){
- this.drawer = true
- },
- handleAvatarProgress(event, file, fileList) {
- this.photo.file = file;
- this.photoUrl = file;
- },
- handleAvatarSuccess (res, file, fileList) {
- this.photoUrl = URL.createObjectURL(file.raw);
- this.$alert(res.msg, this.$t('导入结果'), { dangerouslyUseHTMLString: true });
- },
- handlePictureCardPreview(file) {
- console.info("111" + file.url)
- this.dialogImageUrl = file.url;
- this.dialogVisible = true;
- },
- }
- };
- </script>
- <style>
- .text {
- font-size: 14px;
- }
- .item {
- margin-bottom: 18px;
- }
- .clearfix {
- color: #1e1e1e;
- }
- .clearfix:before,
- .clearfix:after {
- display: table;
- content: "";
- }
- .clearfix:after {
- clear: both
- }
- .box-card {
- width: 100%;
- }
- .el-drawer__body {
- overflow: auto;
- }
- .el-drawer__container ::-webkit-scrollbar {
- display: none;
- }
- .avatar-uploader .el-upload {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409EFF;
- }
- .avatar-uploader-icon {
- font-size: 28px;
- color: #8c939d;
- width: 178px;
- height: 178px;
- line-height: 178px;
- text-align: center;
- }
- .avatar {
- width: 120px;
- height: 140px;
- }
- </style>
|