| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102 |
- <template>
- <div class="app-container">
- <el-row :gutter="10">
- <!--机构数据-->
- <el-col :span="4" :xs="24">
- <org-tree
- v-model="queryParams.orgId"
- @defaultKey="getDefaultKey"
- @checkChange="checkChange"
- @click="clickTreeNode"
- >
- </org-tree>
- </el-col>
- <!--用户数据-->
- <el-col :span="20" :xs="24">
- <div class="main-right-box">
- <!-- 搜索条件 -->
- <div class="main-search-box">
- <el-form
- :model="queryParams"
- ref="queryForm"
- size="small"
- :inline="true"
- v-show="showSearch"
- >
- <el-form-item label="账号" prop="username">
- <el-input
- :maxlength="20"
- v-model="queryParams.username"
- placeholder="请输入关键字"
- clearable
- style="width: 200px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="姓名" prop="name">
- <el-input
- :maxlength="50"
- v-model="queryParams.name"
- placeholder="请输入关键字"
- clearable
- style="width: 200px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="用户角色" prop="roleIds">
- <!-- @visible-change="selectAllRoles" -->
- <el-select
- style="width: 200px"
- v-model="queryParams.roleId"
- placeholder="请选择用户角色"
- clearable
- >
- <el-option
- v-for="item in role_options"
- :key="item.id"
- :label="item.roleName"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="账号状态" prop="isLock">
- <el-select
- v-model="queryParams.isLock"
- placeholder="请选择账号状态"
- clearable
- style="width: 200px"
- >
- <el-option
- v-for="dict in dict.type.sys_normal_disable"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="安保部门从业人员" prop="onlyManager">
- <el-switch
- v-model="queryParams.onlyManager"
- active-text=""
- @change="handleQuery"
- >
- </el-switch>
- </el-form-item>
- </el-form>
- <!-- 按纽 -->
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-search"
- size="mini"
- @click="handleQuery"
- >搜索</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery"
- >重置</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['system:user:add']"
- >新增人员</el-button
- >
- </el-col>
- <!-- <el-col :span="1.5">
- <el-button type="success" plain icon="el-icon-edit-outline" size="mini" :disabled="single" @click="handleUpdate"
- v-hasPermi="['system:user: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="['system:user:remove']">删除</el-button>
- </el-col> -->
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['system:user:import']"
- >导入人员</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['system:user:export']"
- >导出人员</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-download"
- size="mini"
- @click="handleExportManager"
- v-hasPermi="['system:user:exportManager']"
- >导出管理人员</el-button
- >
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- </el-row>
- </div>
- <el-table
- border
- height="646"
- size="small"
- v-loading="loading"
- :data="userList"
- @selection-change="handleSelectionChange"
- >
- <el-table-column
- fixed
- label="序号"
- type="index"
- align="center"
- width="70"
- ></el-table-column>
- <el-table-column
- label="账号"
- align="center"
- key="username"
- prop="username"
- width="120"
- v-if="columns[0].visible"
- :show-overflow-tooltip="true"
- />
- <el-table-column
- label="姓名"
- align="center"
- key="name"
- prop="name"
- width="120"
- v-if="columns[1].visible"
- :show-overflow-tooltip="true"
- />
- <el-table-column
- label="所属机构"
- align="left"
- header-align="center"
- key="orgName"
- prop="orgName"
- width="180"
- v-if="columns[3].visible"
- :show-overflow-tooltip="true"
- />
- <el-table-column
- label="用户角色"
- align="left"
- header-align="center"
- prop="roles"
- width="300"
- v-if="columns[2].visible"
- :show-overflow-tooltip="true"
- >
- <template slot-scope="scope">
- <!-- <template v-for="item in scope.row.roles">
- {{ item.roleName }}
- <br />
- </template> -->
- <div class="cell" v-html="formatter(scope.row.roleNames)"></div>
- </template>
- </el-table-column>
- <!-- <el-table-column
- label="手机号码"
- align="left"
- prop="phone"
- width="200"
- v-if="columns[3].visible"
- :show-overflow-tooltip="true"
- /> -->
- <el-table-column
- label="账号状态"
- align="center"
- key="isLock"
- prop="isLock"
- v-if="columns[4].visible"
- width="100"
- >
- <template slot-scope="scope">
- <dict-tag
- :options="dict.type.sys_normal_disable"
- :value="scope.row.isLock"
- />
- </template>
- </el-table-column>
- <!-- <el-table-column
- label="登录IP"
- align="center"
- key="lastIp"
- prop="lastIp"
- v-if="columns[6].visible"
- width="140"
- /> -->
- <!-- <el-table-column
- label="登录时间"
- align="center"
- key="lastTime"
- prop="lastTime"
- v-if="columns[7].visible"
- width="170"
- /> -->
- <el-table-column
- label="安保部门从业人员"
- align="center"
- key="isManager"
- prop="isManager"
- v-if="columns[5].visible"
- width="160"
- >
- <template slot-scope="scope">
- {{ scope.row.isManage === "Y" ? "是" : "否" }}
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- align="left"
- header-align="center"
- width="350"
- fixed="right"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- v-if="scope.row.isManage=='Y'"
- icon="el-icon-plus"
- @click="handleExtend(scope.row)"
- v-hasPermi="['system:user:extend']"
- >补充信息</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit-outline"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['system:user:edit']"
- >编辑</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- v-if="scope.row.source==0"
- @click="handleDelete(scope.row)"
- v-hasPermi="['system:user:remove']"
- >删除</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-key"
- v-if="scope.row.source==0"
- @click="handleResetPwd(scope.row)"
- v-hasPermi="['system:user:resetPwd']"
- >重置密码</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- </div>
- </el-col>
- </el-row>
- <!-- 添加或编辑配置对话框 -->
- <DialogCom :title="title" :visible.sync="open" width="800px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="100px">
- <el-row>
- <el-col :span="10">
- <el-form-item label="账号" prop="username">
- <el-input
- v-model="form.username"
- placeholder="请输入账号"
- :maxlength="20"
- :disabled="form.source == 1"
- />
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-form-item v-if="!form.id" label="密码" prop="password">
- <el-input
- v-model="form.password"
- placeholder="请输入密码"
- autocomplete="off"
- type="password"
- maxlength="20"
- show-password
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="10">
- <el-form-item label="姓名" prop="name">
- <el-input
- v-model="form.name"
- placeholder="请输入姓名"
- maxlength="30"
- :disabled="form.source == 1"
- />
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-form-item label="性别" prop="gender">
- <el-select
- style="width: 100%"
- v-model="form.gender"
- placeholder="请选择性别"
- :disabled="form.source == 1"
- >
- <el-option
- v-for="dict in dict.type.sys_user_sex"
- :key="dict.value"
- :label="dict.label"
- :value="`${dict.value}`"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="20">
- <el-form-item label="所属机构" prop="orgId">
- <tree-select
- @select="changeRoleIds()"
- v-model="form.orgId"
- :options="deptOptions"
- :show-count="true"
- :normalizer="tenantIdnormalizer"
- :props="{ checkStrictly: true, label: 'name' }"
- placeholder="请选择所属机构"
- :disabled="form.source == 1"
- :noChildrenText="''"
- noOptionsText="没有数据"
- noResultsText="没有搜索结果"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="10">
- <el-form-item label="用户角色">
- <el-select
- :popper-append-to-body="false"
- @visible-change="selectRoles"
- style="width: 100%"
- v-model="form.roleIds"
- multiple
- placeholder="请选择用户角色"
- ref="configSelect"
- >
- <el-option
- v-for="item in roleOptions"
- :key="item.id"
- :label="item.roleName"
- :value="item.id"
- :disabled="item.status == 1"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-form-item label="手机号码" prop="phone">
- <el-input
- v-model="form.phone"
- placeholder="请输入手机号码"
- autocomplete="off"
- maxlength="11"
- :readonly="form.source == 1"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="10">
- <el-form-item label="账号状态">
- <el-radio-group v-model="form.isLock">
- <el-radio
- v-for="dict in dict.type.sys_normal_disable"
- :key="`${dict.value}`"
- :label="dict.value"
- :disabled="form.source == 1"
- >{{ dict.label }}</el-radio
- >
- </el-radio-group>
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-form-item label="管理人员" label-width="180">
- <el-radio-group v-model="form.isManage">
- <el-radio
- v-for="dict in dict.type.sys_yes_no"
- :key="`${dict.value}`"
- :label="dict.value"
- :disabled="form.source == 1"
- >{{ dict.label }}</el-radio
- >
- </el-radio-group>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </DialogCom>
- <!-- 用户导入对话框 -->
- <DialogCom
- :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 + '?updateSupport=' + upload.updateSupport"
- :disabled="upload.isUploading"
- :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess"
- :auto-upload="false"
- :before-upload="beforeUpload"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <!-- <div class="el-upload__tip text-center" slot="tip">
- <div class="el-upload__tip" slot="tip">
- <el-checkbox v-model="upload.updateSupport" />
- 是否更新已经存在的用户数据
- </div>
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link
- type="primary"
- :underline="false"
- style="font-size: 12px; vertical-align: baseline"
- @click="importTemplate"
- >下载模板</el-link
- >
- </div> -->
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="handleExportMod">模板下载</el-button>
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false">取 消</el-button>
- </div>
- </DialogCom>
- </div>
- </template>
- <script>
- import OrgTree from "@/components/orgTree";
- import {
- listUser,
- getUser,
- delUser,
- addUser,
- updateUser,
- resetUserPwd,
- changeUserStatus,
- selectrolesByOrgId,
- } from "@/api/system/user";
- import { getToken } from "@/utils/auth";
- import { deptTreeSelect } from "@/api/system/public";
- import tableList from "@/mixins/tableList";
- import { getInfo } from "@/api/login";
- import { getRoles } from "@/api/system/public";
- import request from "@/utils/request";
- export default {
- name: "User",
- dicts: [
- "sys_normal_disable",
- "sys_user_sex",
- "sys_user_is_lock",
- "sys_yes_no",
- ],
- components: { OrgTree },
- mixins: [tableList],
- data() {
- return {
- defaultProps: {
- children: "children",
- label: "shortName",
- },
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个停用
- single: true,
- // 非多个停用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 用户表格数据
- userList: null,
- //是否是管理员
- check: false,
- orgName:null,
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 机构名称
- deptName: null,
- isRoleIdsChanged: false,
- // 默认密码
- initPassword: null,
- // 日期范围
- dateRange: [],
- // 岗位选项
- postOptions: [],
- // 角色选项
- roleOptions: [],
- //所有角色用于查询
- role_options: [],
- // 表单参数
- form: {},
- // 用户导入参数
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/system/user/importData",
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- username: null,
- phone: null,
- status: null,
- orgId: null,
- checkSub: true,
- onlyManager: false,
- name: null,
- roleId:null,
- isLock:null
- },
- // 列信息
- columns: [
- { key: 0, label: `用户名`, visible: true },
- { key: 1, label: `姓名`, visible: true },
- { key: 2, label: `手机`, visible: true },
- { key: 3, label: `所属机构`, visible: true },
- { key: 4, label: `状态`, visible: true },
- { key: 5, label: `是否管理人员`, visible: true },
- { key: 6, label: `登录IP`, visible: true },
- { key: 7, label: `登录时间`, visible: true },
- ],
- // 表单校验
- rules: {
- username: [
- { required: true, message: "账号不能为空", trigger: "blur" },
- {
- min: 2,
- max: 20,
- message: "账号长度必须介于 2 和 20 之间",
- trigger: "blur",
- },
- ],
- name: [
- { required: true, message: "用户名称不能为空", trigger: "blur" },
- ],
- roleIds: [
- { required: true, message: "用户角色不能为空", trigger: "change" },
- ],
- password: [
- { required: true, message: "密码不能为空", trigger: "blur" },
- { min: 8, message: "密码至少为8位", trigger: "blur" },
- {
- validator: (rule, value, callback) => {
- if (
- !/[a-z]/.test(value) ||
- !/[A-Z]/.test(value) ||
- !/\d/.test(value)
- ) {
- callback(new Error("密码必须包含大小写字母和数字"));
- } else {
- callback();
- }
- },
- trigger: "blur",
- },
- {
- validator: (rule, value, callback) => {
- if (
- /[\u4E00-\u9FA5]/g.test(value)
- ) {
- callback(new Error("密码不能包含中文字符"));
- } else {
- callback();
- }
- },
- trigger: "blur",
- },
- ],
- orgId: [
- { required: true, message: "所属机构不能为空", trigger: "blur" },
- ],
- // email: [
- // {
- // type: "email",
- // message: "请输入正确的邮箱地址",
- // trigger: ["blur", "change"]
- // }
- // ],
- phone: [
- {
- pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
- message: "请输入正确的手机号码",
- trigger: "blur",
- },
- ],
- },
- //默认选中节点
- defaultKeys: null,
- //修改新增中的机构树
- deptOptions: [],
- };
- },
- created() {},
- mounted() {
- this.getAllRoles();
- },
- watch: {
- // 'form.orgId'(newValue) {
- // if (this.isRoleIdsChanged) {
- // this.form.roleIds = null;
- // } else {
- // this.isRoleIdsChanged = true;
- // }
- // }
- // 'form.orgId': {
- // handler(newValue, oldValue) {
- // if(oldValue!=undefined){
- // // console.log('myValue changed:', newValue, oldValue)
- // // 在这里可以对值的改变做出响应
- // // this.deptOptions=[];
- // this.form.roleIds=null;
- // // const dropdown = this.$refs.mySelect.$el.querySelector('.el-select-dropdown');
- // // dropdown.style.display = 'none';
- // }
- // },
- // deep: true
- // }
- },
- methods: {
- changeRoleIds() {
- //手动关闭下拉框
- this.$refs.configSelect.blur();
- //清空角色
- this.form.roleIds = null;
- },
- formatter(content) {
- if (content) {
- const strArr = content.toString().split(",");
- let rel = "";
- strArr.forEach(function (item, index, arr) {
- let ops = `<span style="color: #606266;"> ${item} </span> `;
- rel = rel == "" ? ops : rel + " || " + ops;
- });
- return rel;
- }
- return "";
- },
- getPageIndex($index) {
- //表格序号
- return (
- (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
- );
- },
- cleanRoles() {
- this.roleOptions = [];
- },
- getAllRoles() {
- getRoles().then((response) => {
- this.role_options = response;
- });
- },
- selectRoles() {
- selectrolesByOrgId({ orgId: this.form.orgId }).then((res) => {
- console.log(res, "selectrolesByOrgId");
- this.roleOptions = res.data;
- });
- },
- /** 查询机构树数据 */
- getDeptTree() {
- deptTreeSelect().then((response) => {
- this.deptOptions = response.data;
- });
- },
- // 节点单击事件
- clickTreeNode(data) {
- this.queryParams.orgId = data.id;
- this.handleQuery();
- },
- /** 分配角色操作 */
- handleExtend(row) {
- const userId = row.id;
- this.$router.push("/system/user-extend/extend/" + userId);
- },
- /** treeSelect组件自定义数据*/
- tenantIdnormalizer(node, instanceId) {
- if (node.children && !node.children.length) {
- delete node.children;
- }
- return {
- id: node.id,
- label: node.shortName,
- children: node.children,
- };
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.queryParams.roleId = null;
- this.resetForm("queryForm");
- this.queryParams.onlyManager = false;
- this.handleQuery();
- },
- /** 查询列表 */
- getList() {
- this.loading = true;
- listUser(this.addDateRange(this.queryParams, this.dateRange))
- .then((response) => {
- //兼容框架userId字段
- response.data.rows.forEach((v) => {
- v.userId = v.id;
- });
- this.userList = response.data.rows;
- this.total = response.data.total;
- this.check = response.check;
- this.orgName=response.orgName;
- this.loading = false;
- })
- .catch((err) => {
- this.loading = false;
- });
- },
- getDefaultKey(key) {
- this.queryParams.orgId = key;
- this.getList();
- },
- //单选框状态改变
- checkChange(state) {
- this.queryParams.checkSub = state;
- this.handleQuery();
- },
- // 用户状态修改
- handleStatusChange(row) {
- let text = row.status === "1" ? "启用" : "停用";
- this.$modal
- .confirm("确认要" + text + '"' + row.name + '"用户吗?')
- .then(function () {
- const data = {
- id: row.id,
- isLock: row.isLock,
- };
- return changeUserStatus(data);
- })
- .then(() => {
- this.$modal.msgSuccess(text + "成功");
- })
- .catch(function () {
- row.status = row.status === "0" ? "1" : "0";
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: undefined,
- orgId: undefined,
- username: undefined,
- name: undefined,
- password: undefined,
- phone: undefined,
- email: undefined,
- sex: undefined,
- status: "0",
- remark: undefined,
- postIds: [],
- roleIds: [],
- isLock: "0",
- isManage: "Y",
- };
- this.resetForm("form");
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.userId);
- this.single = selection.length != 1;
- this.multiple = !selection.length;
- },
- // 更多操作触发
- handleCommand(command, row) {
- switch (command) {
- case "handleResetPwd":
- this.handleResetPwd(row);
- break;
- case "handleAuthRole":
- this.handleAuthRole(row);
- break;
- case "handleDelete":
- this.handleDelete(row);
- break;
- default:
- break;
- }
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.getDeptTree();
- getUser().then((response) => {
- this.postOptions = response.posts;
- this.roleOptions = response.roles;
- this.open = true;
- this.title = "新增人员信息";
- this.form.password = this.initPassword;
- });
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.isRoleIdsChanged = false;
- // console.log(row);
- this.reset();
- this.getDeptTree();
- const userId = row.id || this.ids;
- getUser(userId).then((response) => {
- console.log(response.data, "data");
- this.form = response.data;
- this.postOptions = response.posts;
- this.roleOptions = response.roles;
- this.$set(this.form, "postIds", response.postIds);
- // this.$set(this.form, "roleIds", response.roleIds);
- this.form.roleIds = response.roleIds;
- this.open = true;
- this.title = "编辑人员信息";
- console.log(response.roleIds, "roleIds");
- this.form.password = "";
- });
- },
- /** 重置密码按钮操作 */
- handleResetPwd(row) {
- console.log(row, "row");
- this.$prompt('请输入"' + row.name + '"的新密码', "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- closeOnClickModal: false,
- inputPattern: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,16}$/,
- inputErrorMessage:
- "用户密码长度介于8和16之间,必须包含大小写字母和数字",
- })
- .then(({ value }) => {
- let data = {
- id: row.userId,
- password: value,
- };
- resetUserPwd(data).then((response) => {
- this.$modal.msgSuccess("修改成功,新密码是:" + value);
- });
- })
- .catch(() => {});
- },
- /** 分配角色操作 */
- handleAuthRole: function (row) {
- const userId = row.id;
- this.$router.push("/system/user-auth/role/" + userId);
- },
- /** 提交按钮 */
- submitForm: function () {
- this.$refs["form"].validate((valid) => {
- if (valid) {
- if (this.form.id != undefined) {
- console.log(this.form, "this.form");
- updateUser(this.form).then((response) => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- addUser(this.form).then((response) => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- console.log(row);
- const userIds = row.id || this.ids;
- this.$modal
- .confirm('是否确认删除用户昵称为"' + row.name + '"的数据项?')
- .then(function () {
- return delUser(userIds);
- })
- .then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- })
- .catch(() => {});
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download(
- "system/user/export",
- {
- ...this.queryParams,
- },
- `${this.orgName+'-人员信息管理-'+this.formatTime(new Date(),'YYYYMMDD')}.xlsx`
- );
- },
- /** 模板下载按钮操作 */
- handleExportMod() {
- this.download(
- "system/user/export",
- {
- template: true,
- },
- `${this.orgName+'-人员信息管理-管理人员-'+this.formatTime(new Date(),'YYYYMMDD')}.xlsx`
- );
- },
- handleExportManager() {
- this.download(
- "system/user/exportManager",
- {
- ...this.queryParams,
- },
- `人员信息管理-管理人员_${new Date().getTime()}.xlsx`
- );
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = "用户导入";
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- this.download(
- "system/user/importTemplate",
- {},
- `user_template_${new Date().getTime()}.xlsx`
- );
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- console.log(file, "file");
- console.log(fileList, "fileList");
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert(
- "<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" +
- response.msg +
- "</div>",
- "导入结果",
- { dangerouslyUseHTMLString: true }
- );
- this.getList();
- },
- beforeUpload(file) {
- // file 为上传的文件对象
- console.log(file, "file");
- // 返回 false 可以阻止文件上传
- // 创建 FormData 对象
- const formData = new FormData();
- // 添加文件到 FormData
- formData.append("file", file);
- request
- .post("/system/user/importData", formData, {
- headers: {
- "Content-Type": "multipart/form-data",
- },
- })
- .then((response) => {
- // 在接收到后端响应时执行的逻辑
- // console.log(response,"response");
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert(
- "<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" +
- response.msg +
- "</div>",
- "导入结果",
- { dangerouslyUseHTMLString: true }
- );
- this.getList();
- })
- .catch((error) => {
- // 在请求失败时执行的逻辑
- // console.log(error,"error");
- });
- return false;
- },
- // 提交上传文件
- submitFileForm() {
- // console.log(this.$refs.upload.getFile(),"this.$refs.upload")
- this.$refs.upload.submit();
- },
- },
- };
- </script>
- <style lang="scss"></style>
- <style lang="scss" scoped></style>
|