|
@@ -0,0 +1,413 @@
|
|
|
|
+<template xmlns:v-slot="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
+ <el-dialog
|
|
|
|
+ :title="title"
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
+ draggable
|
|
|
|
+ width="1400px"
|
|
|
|
+ v-model="visible">
|
|
|
|
+ <el-form :model="inputForm" ref="inputForm" @keyup.enter.native="doSubmit()"
|
|
|
|
+ label-width="120px" v-loading="loading" :class="method==='view'?'readonly':''" :disabled="method==='view'" @submit.native.prevent>
|
|
|
|
+ <el-divider content-position="left"><i class="el-icon-user"></i> 人员信息</el-divider>
|
|
|
|
+ <el-row :gutter="15">
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="姓名" :rules="[{required: true, message: '姓名不能为空', trigger: 'blur'}]" prop="name">
|
|
|
|
+ <el-input :disabled="true" v-model="inputForm.name" maxlength="50" placeholder=""></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="手机" prop="mobile" :rules="[{validator:validator.isMobile, trigger:'blur'}]">
|
|
|
|
+ <el-input :disabled="true" v-model="inputForm.mobile" maxlength="50" placeholder=""></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item prop="officeDTO.id" :rules="[{required: true, message: '部门不能为空', trigger: 'blur'}]" label="部门">
|
|
|
|
+ <SelectTree
|
|
|
|
+ ref="officeTree"
|
|
|
|
+ :props="{
|
|
|
|
+ value: 'id', // ID字段名
|
|
|
|
+ label: 'name', // 显示名称
|
|
|
|
+ children: 'children' // 子级字段名
|
|
|
|
+ }"
|
|
|
|
+
|
|
|
|
+ :url="`/system-server/sys/office/treeData?type=2`"
|
|
|
|
+ :value="inputForm.officeDTO.id"
|
|
|
|
+ size="default"
|
|
|
|
+ :clearable="true"
|
|
|
|
+ :accordion="true"
|
|
|
|
+ :disabled="true"
|
|
|
|
+ @getValue="(value) => {inputForm.officeDTO.id=value}"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="岗位" prop="postIdList">
|
|
|
|
+ <el-select :disabled="true" v-model="inputForm.postIdList" style="width:100%" multiple placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in postList"
|
|
|
|
+ :key="item.id"
|
|
|
|
+ :label="item.name"
|
|
|
|
+ :value="item.id">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="角色" prop="roleIdList" :rules="[{required: true, message: '角色不能为空', trigger: 'blur'}]">
|
|
|
|
+ <el-select :disabled="true" v-model="inputForm.roleIdList" style="width:100%" multiple placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="role in roleList"
|
|
|
|
+ :key="role.id"
|
|
|
|
+ :label="role.name"
|
|
|
|
+ :value="role.id">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-divider content-position="left"><i class="el-icon-document"></i>
|
|
|
|
+ 执业资格证书
|
|
|
|
+ <el-button style="margin-left: 20px" type="primary" :disabled="method==='view'" @click="insertEvent()" plain>
|
|
|
|
+ 新增
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-divider>
|
|
|
|
+ <el-row :gutter="15">
|
|
|
|
+ <el-col :span="24">
|
|
|
|
+ <vxe-table
|
|
|
|
+ border
|
|
|
|
+ show-overflow
|
|
|
|
+ show-footer
|
|
|
|
+ ref="certTable"
|
|
|
|
+ class="vxe-table-element"
|
|
|
|
+ :data="inputForm.certDTOList"
|
|
|
|
+ style="margin-left: 5em"
|
|
|
|
+ :key="tableKey"
|
|
|
|
+ highlight-current-row
|
|
|
|
+ :edit-config="{trigger: 'click', mode: 'row', showStatus: false, autoClear: true}"
|
|
|
|
+ @edit-actived="editActivedEvent"
|
|
|
|
+ >
|
|
|
|
+ <vxe-table-column field="type" align="center" title="证书类型" :edit-render="{name: '$select', options: $dictUtils.getDictList('sys_cert_type')}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <vxe-select v-model="scope.row.type" @change="changeType(scope.$rowIndex)" placeholder="请选择证书类型" clearable style="width: 100%;" transfer>
|
|
|
|
+ <vxe-option
|
|
|
|
+ v-for="item in $dictUtils.getDictList('sys_cert_type')"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value">
|
|
|
|
+ </vxe-option>
|
|
|
|
+ </vxe-select>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column field="no" align="center" title="证书编号" :edit-render="{}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <el-input v-model="scope.row.no" ></el-input>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column field="authorities" align="center" title="发证机关" :edit-render="{}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <el-input v-model="scope.row.authorities" ></el-input>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column field="issuedDate" align="center" title="发证日期" :edit-render="{}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <vxe-input v-model="scope.row.issuedDate" placeholder="发证日期" type="date" transfer></vxe-input>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column field="enrollDate" align="center" title="注册日期" :edit-render="{}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <vxe-input v-model="scope.row.enrollDate" type="date" placeholder="注册日期" clearable transfer></vxe-input>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column field="expireDate" align="center" title="到期日期" :edit-render="{}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <vxe-input v-model="scope.row.expireDate" placeholder="到期日期" type="date" transfer></vxe-input>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column field="enrollCertNo" align="center" title="注册证书编号" :edit-render="{}">
|
|
|
|
+ <template v-slot:edit="scope">
|
|
|
|
+ <el-input v-model="scope.row.enrollCertNo" ></el-input>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column field="profession" align="center" title="专业" :formatter="formatLabel" :edit-render="{}">
|
|
|
|
+ <template #edit="{ row }">
|
|
|
|
+ <vxe-select v-model="row.profession" @change="changeProfession" placeholder="请选择专业" clearable style="width: 100%;" transfer>
|
|
|
|
+ <vxe-option
|
|
|
|
+ v-for="item in row.professionList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.label">
|
|
|
|
+ </vxe-option>
|
|
|
|
+ </vxe-select>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column min-width="50px" field="fileLsUrl" align="center" title="文件" :edit-render="{}">
|
|
|
|
+ <template v-slot="{row}">
|
|
|
|
+ <img style="height: 43px" class="img" :src="row.fileLsUrl"/>
|
|
|
|
+ </template>
|
|
|
|
+ <template v-slot:edit="scope" >
|
|
|
|
+ <el-upload slot="reference"
|
|
|
|
+ class="avatar"
|
|
|
|
+ style="height: 43px;line-height: 43px"
|
|
|
|
+ :action="`${$http.BASE_URL}/oss/file/webUpload/fileUpload?dir=sys_cert`"
|
|
|
|
+ :on-success="(res,file)=> handleAvatarSuccess(res,file,scope)"
|
|
|
|
+ :before-upload="beforeAvatarUpload"
|
|
|
|
+ :show-file-list="false">
|
|
|
|
+ <el-button type="info" slot="trigger" style="margin-right: 10px" class="avatar-uploader-table">上传</el-button>
|
|
|
|
+ <img style="max-height: 43px;max-width: 56px" slot="tip" :readonly="true" @click="showPhoto(scope.row.fileLsUrl)" v-if="scope.row.fileLsUrl" :src="scope.row.fileLsUrl" class="el-upload-list__item-thumbnail">
|
|
|
|
+ </el-upload>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ <vxe-table-column title="操作" width="100">
|
|
|
|
+ <template v-slot="scope">
|
|
|
|
+ <el-button type="danger" @click="removeEvent(scope.row,scope.$rowIndex)">删除</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </vxe-table-column>
|
|
|
|
+ </vxe-table>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </el-form>
|
|
|
|
+ <el-image-viewer
|
|
|
|
+ v-if="showViewer"
|
|
|
|
+ :on-close="closeViewer"
|
|
|
|
+ :url-list="[url]"
|
|
|
|
+ :zIndex="99999"
|
|
|
|
+ />
|
|
|
|
+ <template #footer>
|
|
|
|
+ <span class="dialog-footer">
|
|
|
|
+ <el-button @click="visible = false" icon="el-icon-circle-close">关闭</el-button>
|
|
|
|
+ <el-button type="primary" v-if="method != 'view'" @click="doSubmit()" icon="el-icon-circle-check" v-noMoreClick>确定</el-button>
|
|
|
|
+ </span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-dialog>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import SelectTree from '@/components/treeSelect/treeSelect.vue'
|
|
|
|
+import userService from '@/api/sys/userService'
|
|
|
|
+import postService from '@/api/sys/postService'
|
|
|
|
+import roleService from '@/api/sys/roleService'
|
|
|
|
+// import ElImageViewer from 'element-ui/packages/image/src/image-viewer'
|
|
|
|
+export default {
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ visible: false,
|
|
|
|
+ loading: false,
|
|
|
|
+ title: '',
|
|
|
|
+ method: '',
|
|
|
|
+ roleList: [],
|
|
|
|
+ postList: [],
|
|
|
|
+ inputForm: {
|
|
|
|
+ id: '',
|
|
|
|
+ companyDTO: { // 归属公司
|
|
|
|
+ id: '',
|
|
|
|
+ name: ''
|
|
|
|
+ },
|
|
|
|
+ officeDTO: {
|
|
|
|
+ id: '',
|
|
|
|
+ name: ''
|
|
|
|
+ },
|
|
|
|
+ roleIdList: [],
|
|
|
|
+ postIdList: [],
|
|
|
|
+ loginName: '', // 登录名
|
|
|
|
+ no: '', // 工号
|
|
|
|
+ name: '', // 姓名
|
|
|
|
+ email: '', // 邮箱
|
|
|
|
+ phone: '', // 电话
|
|
|
|
+ mobile: '', // 手机
|
|
|
|
+ loginFlag: '1', // 是否允许登陆
|
|
|
|
+ photo: '', // 头像
|
|
|
|
+ qrCode: '', // 二维码
|
|
|
|
+ oldLoginName: '', // 原登录名
|
|
|
|
+ newPassword: '', // 新密码
|
|
|
|
+ confirmNewPassword: '',
|
|
|
|
+ sign: '', // 签名
|
|
|
|
+ remarks: '', // 备注
|
|
|
|
+ certDTOList: [] // 资格证书列表
|
|
|
|
+ },
|
|
|
|
+ professionList: [],
|
|
|
|
+ tableKey: '',
|
|
|
|
+ url: '',
|
|
|
|
+ showViewer: false
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ created () {
|
|
|
|
+ },
|
|
|
|
+ mounted () {
|
|
|
|
+ },
|
|
|
|
+ components: {
|
|
|
|
+ SelectTree,
|
|
|
|
+ // ElImageViewer
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ init (method, id) {
|
|
|
|
+ this.method = method
|
|
|
|
+ this.inputForm.id = id
|
|
|
|
+ if (method === 'add') {
|
|
|
|
+ this.title = `新建用户`
|
|
|
|
+ } else if (method === 'edit') {
|
|
|
|
+ this.title = '修改执业资格证书'
|
|
|
|
+ } else if (method === 'view') {
|
|
|
|
+ this.title = '查看执业资格证书'
|
|
|
|
+ }
|
|
|
|
+ this.visible = true
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.$refs.inputForm.resetFields()
|
|
|
|
+ this.inputForm.oldLoinName = ''
|
|
|
|
+ roleService.list({current: 1, size: -1}).then((data) => {
|
|
|
|
+ this.roleList = data.records
|
|
|
|
+ })
|
|
|
|
+ postService.list({current: 1, size: -1}).then((data) => {
|
|
|
|
+ this.postList = data.records
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ if (method === 'edit' || method === 'view') { // 修改或者查看
|
|
|
|
+ this.loading = true
|
|
|
|
+ userService.queryById(this.inputForm.id).then((data) => {
|
|
|
|
+ this.inputForm = this.recover(this.inputForm, data)
|
|
|
|
+ this.inputForm.oldLoginName = this.inputForm.loginName
|
|
|
|
+ if (this.commonJS.isEmpty(this.inputForm.certDTOList)) {
|
|
|
|
+ this.inputForm.certDTOList = []
|
|
|
|
+ }
|
|
|
|
+ this.loading = false
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ beforeAvatarUpload (file) {
|
|
|
|
+ const isJPG = file.type.indexOf('image/') >= 0
|
|
|
|
+ const isLt2M = file.size / 1024 / 100 <= 1
|
|
|
|
+
|
|
|
|
+ if (!isJPG) {
|
|
|
|
+ this.$message.error('上传文件只能是图片格式')
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ if (!isLt2M) {
|
|
|
|
+ this.$message.error('上传文件大小不能超过 100KB')
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ return true
|
|
|
|
+ },
|
|
|
|
+ // 表单提交
|
|
|
|
+ doSubmit () {
|
|
|
|
+ this.$refs['inputForm'].validate((valid) => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ this.loading = true
|
|
|
|
+ this.inputForm.certDTOList.forEach((item, index) => {
|
|
|
|
+ if (this.commonJS.isEmpty(item.type)) {
|
|
|
|
+ this.$message.error('执业资格证书中第' + (index + 1) + '条数据的“证书类型”未填写')
|
|
|
|
+ this.loading = false
|
|
|
|
+ throw new Error()
|
|
|
|
+ }
|
|
|
|
+ if (this.commonJS.isEmpty(item.no)) {
|
|
|
|
+ this.$message.error('执业资格证书中第' + (index + 1) + '条数据的“证书编号”未填写')
|
|
|
|
+ this.loading = false
|
|
|
|
+ throw new Error()
|
|
|
|
+ }
|
|
|
|
+ if (this.commonJS.isNotEmpty(item.issuedDate)) {
|
|
|
|
+ item.issuedDate = this.moment(item.issuedDate).format('YYYY-MM-DD')
|
|
|
|
+ }
|
|
|
|
+ if (this.commonJS.isNotEmpty(item.enrollDate)) {
|
|
|
|
+ item.enrollDate = this.moment(item.enrollDate).format('YYYY-MM-DD')
|
|
|
|
+ }
|
|
|
|
+ if (this.commonJS.isNotEmpty(item.expireDate)) {
|
|
|
|
+ item.expireDate = this.moment(item.expireDate).format('YYYY-MM-DD')
|
|
|
|
+ } else {
|
|
|
|
+ this.$message.error('执业资格证书中第' + (index + 1) + '条数据的“到期日期”未填写')
|
|
|
|
+ this.loading = false
|
|
|
|
+ throw new Error()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ userService.saveCertList(this.inputForm).then((data) => {
|
|
|
|
+ this.loading = false
|
|
|
|
+ this.visible = false
|
|
|
|
+ this.$message.success(data)
|
|
|
|
+ this.$emit('refreshDataList')
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ this.loading = false
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 新增
|
|
|
|
+ insertEvent () {
|
|
|
|
+ this.$refs.certTable.insert().then((data) => {
|
|
|
|
+ this.inputForm.certDTOList.push(data)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 删除
|
|
|
|
+ removeEvent (row, rowIndex) {
|
|
|
|
+ this.$refs.certTable.remove(row)
|
|
|
|
+ this.inputForm.certDTOList.splice(rowIndex, 1)
|
|
|
|
+ },
|
|
|
|
+ changeType (index) {
|
|
|
|
+ this.inputForm.certDTOList[index].profession = ''
|
|
|
|
+ if (this.inputForm.certDTOList[index].type === '1' || this.inputForm.certDTOList[index].type === '2') {
|
|
|
|
+ this.inputForm.certDTOList[index].professionList = this.$dictUtils.getDictList('sys_cert_profession_build')
|
|
|
|
+ } else if (this.inputForm.certDTOList[index].type === '3' || this.inputForm.certDTOList[index].type === '4') {
|
|
|
|
+ this.inputForm.certDTOList[index].professionList = this.$dictUtils.getDictList('sys_cert_profession_cost')
|
|
|
|
+ } else if (this.inputForm.certDTOList[index].type === '5') {
|
|
|
|
+ this.inputForm.certDTOList[index].professionList = this.$dictUtils.getDictList('sys_cert_profession_supervision')
|
|
|
|
+ } else if (this.inputForm.certDTOList[index].type === '6') {
|
|
|
|
+ this.inputForm.certDTOList[index].professionList = this.$dictUtils.getDictList('sys_cert_profession_accounting')
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ changeProfession () {
|
|
|
|
+ this.$forceUpdate()
|
|
|
|
+ },
|
|
|
|
+ handleAvatarSuccess (res, file, scope) {
|
|
|
|
+ this.inputForm.certDTOList[scope.$rowIndex].fileUrl = res.url
|
|
|
|
+ this.inputForm.certDTOList[scope.$rowIndex].fileLsUrl = res.lsUrl
|
|
|
|
+ this.$forceUpdate()
|
|
|
|
+ },
|
|
|
|
+ showPhoto (fileUrl) {
|
|
|
|
+ this.url = fileUrl
|
|
|
|
+ this.showViewer = true
|
|
|
|
+ },
|
|
|
|
+ // 关闭查看器
|
|
|
|
+ closeViewer () {
|
|
|
|
+ this.url = ''
|
|
|
|
+ this.showViewer = false
|
|
|
|
+ },
|
|
|
|
+ // 格式化显示名称
|
|
|
|
+ // 单元格或行在没有变成可编辑前、单元格或行在编辑状态结束后 都会执行此方法
|
|
|
|
+ formatLabel ({ cellValue, row }) {
|
|
|
|
+ if (row.type === '1' || row.type === '2') {
|
|
|
|
+ row.professionList = this.$dictUtils.getDictList('sys_cert_profession_build')
|
|
|
|
+ } else if (row.type === '3' || row.type === '4') {
|
|
|
|
+ row.professionList = this.$dictUtils.getDictList('sys_cert_profession_cost')
|
|
|
|
+ } else if (row.type === '5') {
|
|
|
|
+ row.professionList = this.$dictUtils.getDictList('sys_cert_profession_supervision')
|
|
|
|
+ } else if (row.type === '6') {
|
|
|
|
+ row.professionList = this.$dictUtils.getDictList('sys_cert_profession_accounting')
|
|
|
|
+ }
|
|
|
|
+ if (this.commonJS.isNotEmpty(row.professionList)) {
|
|
|
|
+ let dict = row.professionList.find(item => item.value === cellValue || item.label === cellValue)
|
|
|
|
+ if (dict) {
|
|
|
|
+ row.profession = dict.value
|
|
|
|
+ return dict.label
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return ''
|
|
|
|
+ },
|
|
|
|
+ // 在点击行之后,行数据变为可编辑时,执行此方法
|
|
|
|
+ editActivedEvent ({row}) {
|
|
|
|
+ if (this.commonJS.isNotEmpty(row.professionList)) {
|
|
|
|
+ let dict = row.professionList.find(item => item.value === row.profession || item.label === row.profession)
|
|
|
|
+ if (dict) {
|
|
|
|
+ row.profession = dict.label
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+<style>
|
|
|
|
+.avatar{
|
|
|
|
+ height: 100px;
|
|
|
|
+}
|
|
|
|
+.el-divider__text {
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+}
|
|
|
|
+.vxe-select--panel{
|
|
|
|
+ z-index: 3000 !important;
|
|
|
|
+}
|
|
|
|
+</style>
|