2025-05-21 11:24:53 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="p-2">
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<!-- 部门树 -->
|
|
|
|
|
<el-col :lg="4" :xs="24" style="">
|
|
|
|
|
<el-card shadow="hover">
|
2025-07-11 19:16:57 +08:00
|
|
|
|
<el-input v-model="deptName" placeholder="请输入部门名称" prefix-icon="Search" clearable />
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-tree
|
|
|
|
|
ref="deptTreeRef"
|
|
|
|
|
class="mt-2"
|
|
|
|
|
node-key="id"
|
|
|
|
|
:data="deptOptions"
|
|
|
|
|
:props="{ label: 'label', children: 'children' }"
|
|
|
|
|
:expand-on-click-node="false"
|
|
|
|
|
:filter-node-method="filterNode"
|
|
|
|
|
highlight-current
|
|
|
|
|
default-expand-all
|
|
|
|
|
@node-click="handleNodeClick"
|
|
|
|
|
/>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-card>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :lg="20" :xs="24">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
2025-05-21 11:24:53 +08:00
|
|
|
|
<div v-show="showSearch" class="mb-[10px]">
|
|
|
|
|
<el-card shadow="hover">
|
|
|
|
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
|
|
|
|
<el-form-item label="用户名称" prop="userName">
|
|
|
|
|
<el-input v-model="queryParams.userName" placeholder="请输入用户名称" clearable @keyup.enter="handleQuery" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="手机号码" prop="phonenumber">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-input v-model="queryParams.phonenumber" placeholder="请输入手机号码" clearable @keyup.enter="handleQuery" />
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
|
<el-select v-model="queryParams.status" placeholder="用户状态" clearable>
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-option v-for="dict in sys_normal_disable" :key="dict.value" :label="dict.label" :value="dict.value" />
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="创建时间" style="width: 308px">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="dateRange"
|
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
type="daterange"
|
|
|
|
|
range-separator="-"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
:default-time="[new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 1, 1, 23, 59, 59)]"
|
|
|
|
|
></el-date-picker>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery" @v-has-permi="['system:user:query']">搜索</el-button>
|
2025-08-29 14:55:22 +08:00
|
|
|
|
|
2025-05-21 11:24:53 +08:00
|
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
|
</transition>
|
|
|
|
|
|
|
|
|
|
<el-card shadow="hover">
|
|
|
|
|
<template #header>
|
|
|
|
|
<el-row :gutter="10">
|
|
|
|
|
<el-col :span="1.5">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-has-permi="['system:user:add']" type="primary" plain icon="Plus" @click="handleAdd()"> 新增 </el-button>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-has-permi="['system:user:edit']" type="success" plain :disabled="single" icon="Edit" @click="handleUpdate()">
|
2025-05-21 11:24:53 +08:00
|
|
|
|
修改
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-has-permi="['system:user:remove']" type="danger" plain :disabled="multiple" icon="Delete" @click="handleDelete()">
|
2025-05-21 11:24:53 +08:00
|
|
|
|
删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-dropdown class="mt-[1px]">
|
|
|
|
|
<el-button plain type="info">
|
|
|
|
|
更多
|
|
|
|
|
<el-icon class="el-icon--right">
|
|
|
|
|
<arrow-down />
|
|
|
|
|
</el-icon>
|
|
|
|
|
</el-button>
|
|
|
|
|
<template #dropdown>
|
|
|
|
|
<el-dropdown-menu>
|
|
|
|
|
<el-dropdown-item icon="Download" @click="importTemplate">下载模板</el-dropdown-item>
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-dropdown-item v-has-permi="['system:user:import']" icon="Top" @click="handleImport">导入数据 </el-dropdown-item>
|
|
|
|
|
<el-dropdown-item v-has-permi="['system:user:export']" icon="Download" @click="handleExport"> 导出数据 </el-dropdown-item>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
</el-col>
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<right-toolbar v-model:show-search="showSearch" :columns="columns" :search="true" @query-table="getList"></right-toolbar>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-row>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="50" align="center" />
|
|
|
|
|
<el-table-column v-if="columns[0].visible" key="userId" label="用户编号" align="center" prop="userId" />
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-table-column v-if="columns[1].visible" key="userName" label="用户名称" align="center" prop="userName" :show-overflow-tooltip="true" />
|
|
|
|
|
<el-table-column v-if="columns[2].visible" key="nickName" label="用户昵称" align="center" prop="nickName" :show-overflow-tooltip="true" />
|
|
|
|
|
<el-table-column v-if="columns[3].visible" key="deptName" label="部门" align="center" prop="deptName" :show-overflow-tooltip="true" />
|
|
|
|
|
<el-table-column v-if="columns[4].visible" key="phonenumber" label="手机号码" align="center" prop="phonenumber" width="120" />
|
2025-05-21 11:24:53 +08:00
|
|
|
|
<el-table-column v-if="columns[5].visible" key="status" label="状态" align="center">
|
|
|
|
|
<template #default="scope">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-switch v-model="scope.row.status" active-value="0" inactive-value="1" @change="handleStatusChange(scope.row)"></el-switch>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column v-if="columns[6].visible" label="创建时间" align="center" prop="createTime" width="160">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span>{{ scope.row.createTime }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
2025-06-25 18:48:23 +08:00
|
|
|
|
<el-table-column label="操作" fixed="right" width="230" class-name="small-padding fixed-width">
|
2025-05-21 11:24:53 +08:00
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-tooltip v-if="scope.row.userId !== 1" content="修改" placement="top">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-hasPermi="['system:user:edit']" link type="primary" icon="Edit" @click="handleUpdate(scope.row)"></el-button>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-tooltip>
|
|
|
|
|
<el-tooltip v-if="scope.row.userId !== 1" content="删除" placement="top">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-hasPermi="['system:user:remove']" link type="primary" icon="Delete" @click="handleDelete(scope.row)"></el-button>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-tooltip>
|
|
|
|
|
|
|
|
|
|
<el-tooltip v-if="scope.row.userId !== 1" content="重置密码" placement="top">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-hasPermi="['system:user:resetPwd']" link type="primary" icon="Key" @click="handleResetPwd(scope.row)"></el-button>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-tooltip>
|
|
|
|
|
|
|
|
|
|
<el-tooltip v-if="scope.row.userId !== 1" content="分配角色" placement="top">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-hasPermi="['system:user:edit']" link type="primary" icon="CircleCheck" @click="handleAuthRole(scope.row)"></el-button>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-tooltip>
|
|
|
|
|
<el-tooltip v-if="scope.row.userId !== 1" content="编辑关联项目" placement="top">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-hasPermi="['system:user:edit']" link type="primary" icon="Edit" @click="handleUpdateProject(scope.row)"></el-button>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-tooltip>
|
2025-06-25 18:48:23 +08:00
|
|
|
|
<el-tooltip v-if="scope.row.userId !== 1" content="上传证书目录" placement="top">
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-button v-hasPermi="['system:user:edit']" link type="primary" icon="Upload" @click="handleUploadCert(scope.row)"></el-button>
|
2025-06-25 18:48:23 +08:00
|
|
|
|
</el-tooltip>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-dialog v-model="shuttleVisible" title="编辑关联项目" width="auto" destroy-on-close>
|
|
|
|
|
<shuttle-frame :userId="selectedUserId" @close="shuttleVisible = false" />
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<pagination
|
|
|
|
|
v-show="total > 0"
|
|
|
|
|
v-model:page="queryParams.pageNum"
|
|
|
|
|
v-model:limit="queryParams.pageSize"
|
|
|
|
|
:total="total"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-card>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改用户配置对话框 -->
|
2025-09-05 17:28:00 +08:00
|
|
|
|
<el-dialog draggable ref="formDialogRef" style="background: rgb(249,250,251);" v-model="dialog.visible" :title="dialog.title" width="1300px" append-to-body @close="closeDialog">
|
2025-09-03 17:28:50 +08:00
|
|
|
|
<div class="boxDetial">
|
|
|
|
|
<div class="tab_info">
|
2025-09-05 17:28:00 +08:00
|
|
|
|
<div class="tab_item" @click="onTab(1)" :class="{ active: type == 1 }">
|
|
|
|
|
<Avatar style="width: 1em; height: 1em; margin-right: 8px" :style="{color: type == 1 ? '#1890ff' : '#000'}" />
|
|
|
|
|
<span>基本资料</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab_item" @click="onTab(2)" :class="{ active: type == 2 }">
|
|
|
|
|
<Key style="width: 1em; height: 1em; margin-right: 8px" :style="{color: type == 2 ? '#1890ff' : '#000'}" />
|
|
|
|
|
<span>角色信息</span>
|
|
|
|
|
</div>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</div>
|
2025-09-04 09:03:42 +08:00
|
|
|
|
<div class="tab_content" v-show="type == 1">
|
|
|
|
|
<editInfo ref="editInfoRef" @close="dialog.visible = false" @submit="getList" @setDeptId="setDeptId"></editInfo>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab_content" v-show="type == 2">
|
|
|
|
|
<roleInfo ref="roleInfoRef" @close="dialog.visible = false" @submit="getList"></roleInfo>
|
2025-09-03 17:28:50 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!-- 用户导入对话框 -->
|
2025-06-25 18:48:23 +08:00
|
|
|
|
<el-dialog draggable v-model="upload.open" :title="upload.title" width="400px" append-to-body>
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-upload
|
|
|
|
|
ref="uploadRef"
|
|
|
|
|
: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"
|
|
|
|
|
drag
|
|
|
|
|
>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
<el-icon class="el-icon--upload">
|
|
|
|
|
<i-ep-upload-filled />
|
|
|
|
|
</el-icon>
|
|
|
|
|
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
|
|
|
|
<template #tip>
|
|
|
|
|
<div class="text-center el-upload__tip">
|
|
|
|
|
<div class="el-upload__tip">
|
|
|
|
|
<el-checkbox v-model="upload.updateSupport" />
|
|
|
|
|
是否更新已经存在的用户数据
|
|
|
|
|
</div>
|
|
|
|
|
<span>仅允许导入xls、xlsx格式文件。</span>
|
2025-09-03 15:42:10 +08:00
|
|
|
|
<el-link type="primary" :underline="false" style="font-size: 12px; vertical-align: baseline" @click="importTemplate">下载模板 </el-link>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-upload>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<div class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitFileForm">确 定</el-button>
|
|
|
|
|
<el-button @click="upload.open = false">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
2025-06-25 18:48:23 +08:00
|
|
|
|
|
|
|
|
|
<el-dialog title="上传证书目录" v-model="certDialog" width="30%" destroy-on-close>
|
|
|
|
|
<!-- <File-upload v-model="fileUpload" :limit="5"></File-upload> -->
|
|
|
|
|
<ImageUpload v-model="fileUpload" :limit="5"></ImageUpload>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<span>
|
|
|
|
|
<el-button @click="certDialog = false">取消</el-button>
|
|
|
|
|
<el-button type="primary" @click="uploadCert">确定</el-button>
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="User" lang="ts">
|
2025-06-25 18:48:23 +08:00
|
|
|
|
import api, { uploadCertList } from '@/api/system/user';
|
2025-05-21 11:24:53 +08:00
|
|
|
|
import { UserForm, UserQuery, UserVO } from '@/api/system/user/types';
|
|
|
|
|
import { DeptTreeVO, DeptVO } from '@/api/system/dept/types';
|
|
|
|
|
import { RoleVO } from '@/api/system/role/types';
|
|
|
|
|
import { PostVO } from '@/api/system/post/types';
|
|
|
|
|
import { globalHeaders } from '@/utils/request';
|
|
|
|
|
import { to } from 'await-to-js';
|
2025-08-28 03:35:18 +08:00
|
|
|
|
import { getProjectByDeptId, getRoleList, optionselect } from '@/api/system/post';
|
2025-05-21 11:24:53 +08:00
|
|
|
|
import ShuttleFrame from '../../project/projectRelevancy/component/ShuttleFrame.vue';
|
2025-08-28 22:24:49 +08:00
|
|
|
|
import { listProject } from '@/api/project/project';
|
2025-09-03 17:28:50 +08:00
|
|
|
|
import editInfo from './comm/editInfo.vue';
|
2025-09-04 09:03:42 +08:00
|
|
|
|
import roleInfo from './comm/roleInfo.vue';
|
2025-09-05 17:28:00 +08:00
|
|
|
|
import { color } from 'echarts';
|
2025-05-21 11:24:53 +08:00
|
|
|
|
const router = useRouter();
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
const { sys_normal_disable, sys_user_sex } = toRefs<any>(proxy?.useDict('sys_normal_disable', 'sys_user_sex'));
|
|
|
|
|
const userList = ref<UserVO[]>();
|
|
|
|
|
const loading = ref(true);
|
|
|
|
|
const showSearch = ref(true);
|
|
|
|
|
const ids = ref<Array<number | string>>([]);
|
|
|
|
|
const single = ref(true);
|
|
|
|
|
const multiple = ref(true);
|
|
|
|
|
const total = ref(0);
|
|
|
|
|
const dateRange = ref<[DateModelType, DateModelType]>(['', '']);
|
|
|
|
|
const deptName = ref('');
|
|
|
|
|
const deptOptions = ref<DeptTreeVO[]>([]);
|
|
|
|
|
const enabledDeptOptions = ref<DeptTreeVO[]>([]);
|
|
|
|
|
const initPassword = ref<string>('');
|
|
|
|
|
const postOptions = ref<PostVO[]>([]);
|
|
|
|
|
const roleOptions = ref<RoleVO[]>([]);
|
2025-08-28 03:35:18 +08:00
|
|
|
|
const projectOptions = ref<any[]>([]);
|
2025-09-03 17:28:50 +08:00
|
|
|
|
const editInfoRef = ref<InstanceType<typeof editInfo> | null>(null);
|
2025-09-04 09:03:42 +08:00
|
|
|
|
const roleInfoRef = ref<InstanceType<typeof roleInfo> | null>(null);
|
2025-05-21 11:24:53 +08:00
|
|
|
|
/*** 用户导入参数 */
|
|
|
|
|
const upload = reactive<ImportOption>({
|
|
|
|
|
// 是否显示弹出层(用户导入)
|
|
|
|
|
open: false,
|
|
|
|
|
// 弹出层标题(用户导入)
|
|
|
|
|
title: '',
|
|
|
|
|
// 是否禁用上传
|
|
|
|
|
isUploading: false,
|
|
|
|
|
// 是否更新已经存在的用户数据
|
|
|
|
|
updateSupport: 0,
|
|
|
|
|
// 设置上传的请求头部
|
|
|
|
|
headers: globalHeaders(),
|
|
|
|
|
// 上传的地址
|
|
|
|
|
url: import.meta.env.VITE_APP_BASE_API + '/system/user/importData'
|
|
|
|
|
});
|
|
|
|
|
// 列显隐信息
|
|
|
|
|
const columns = ref<FieldOption[]>([
|
|
|
|
|
{ key: 0, label: `用户编号`, visible: false, children: [] },
|
|
|
|
|
{ key: 1, label: `用户名称`, visible: true, children: [] },
|
|
|
|
|
{ key: 2, label: `用户昵称`, visible: true, children: [] },
|
|
|
|
|
{ key: 3, label: `部门`, visible: true, children: [] },
|
|
|
|
|
{ key: 4, label: `手机号码`, visible: true, children: [] },
|
|
|
|
|
{ key: 5, label: `状态`, visible: true, children: [] },
|
|
|
|
|
{ key: 6, label: `创建时间`, visible: true, children: [] }
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const deptTreeRef = ref<ElTreeInstance>();
|
|
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
|
|
|
const userFormRef = ref<ElFormInstance>();
|
|
|
|
|
const uploadRef = ref<ElUploadInstance>();
|
|
|
|
|
const formDialogRef = ref<ElDialogInstance>();
|
2025-09-04 09:03:42 +08:00
|
|
|
|
const deptIdRole = ref<number>();
|
2025-09-03 17:28:50 +08:00
|
|
|
|
const type = ref(1);
|
2025-05-21 11:24:53 +08:00
|
|
|
|
const dialog = reactive<DialogOption>({
|
|
|
|
|
visible: false,
|
|
|
|
|
title: ''
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const initFormData: UserForm = {
|
|
|
|
|
userId: undefined,
|
|
|
|
|
deptId: undefined,
|
|
|
|
|
userName: '',
|
|
|
|
|
nickName: undefined,
|
|
|
|
|
password: '',
|
|
|
|
|
phonenumber: undefined,
|
|
|
|
|
email: undefined,
|
|
|
|
|
sex: undefined,
|
2025-08-28 03:35:18 +08:00
|
|
|
|
projectRoles: [
|
|
|
|
|
{
|
|
|
|
|
projectId: '',
|
|
|
|
|
roleIds: []
|
|
|
|
|
}
|
|
|
|
|
],
|
2025-05-21 11:24:53 +08:00
|
|
|
|
status: '0',
|
|
|
|
|
remark: '',
|
|
|
|
|
postIds: [],
|
2025-06-25 18:48:23 +08:00
|
|
|
|
filePath: undefined
|
2025-05-21 11:24:53 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const initData: PageData<UserForm, UserQuery> = {
|
|
|
|
|
form: { ...initFormData },
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
userName: '',
|
|
|
|
|
phonenumber: '',
|
|
|
|
|
status: '',
|
|
|
|
|
deptId: '',
|
|
|
|
|
roleId: ''
|
|
|
|
|
},
|
|
|
|
|
rules: {
|
|
|
|
|
userName: [
|
|
|
|
|
{ required: true, message: '用户名称不能为空', trigger: 'blur' },
|
|
|
|
|
{
|
|
|
|
|
min: 2,
|
|
|
|
|
max: 20,
|
|
|
|
|
message: '用户名称长度必须介于 2 和 20 之间',
|
|
|
|
|
trigger: 'blur'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
nickName: [{ required: true, message: '用户昵称不能为空', trigger: 'blur' }],
|
|
|
|
|
password: [
|
|
|
|
|
{ required: true, message: '用户密码不能为空', trigger: 'blur' },
|
|
|
|
|
{
|
|
|
|
|
min: 5,
|
|
|
|
|
max: 20,
|
|
|
|
|
message: '用户密码长度必须介于 5 和 20 之间',
|
|
|
|
|
trigger: 'blur'
|
|
|
|
|
},
|
|
|
|
|
{ pattern: /^[^<>"'|\\]+$/, message: '不能包含非法字符:< > " \' \\ |', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
email: [
|
|
|
|
|
{
|
|
|
|
|
type: 'email',
|
|
|
|
|
message: '请输入正确的邮箱地址',
|
|
|
|
|
trigger: ['blur', 'change']
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
phonenumber: [
|
2025-07-18 19:22:36 +08:00
|
|
|
|
{ required: true, message: '请输入手机号码', trigger: 'blur' },
|
2025-05-21 11:24:53 +08:00
|
|
|
|
{
|
|
|
|
|
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
|
|
|
|
message: '请输入正确的手机号码',
|
|
|
|
|
trigger: 'blur'
|
|
|
|
|
}
|
2025-08-28 03:35:18 +08:00
|
|
|
|
]
|
2025-05-21 11:24:53 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
const data = reactive<PageData<UserForm, UserQuery>>(initData);
|
|
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs<PageData<UserForm, UserQuery>>(data);
|
|
|
|
|
|
|
|
|
|
/** 通过条件过滤节点 */
|
|
|
|
|
const filterNode = (value: string, data: any) => {
|
|
|
|
|
if (!value) return true;
|
|
|
|
|
return data.label.indexOf(value) !== -1;
|
|
|
|
|
};
|
|
|
|
|
/** 根据名称筛选部门树 */
|
|
|
|
|
watchEffect(
|
|
|
|
|
() => {
|
|
|
|
|
deptTreeRef.value?.filter(deptName.value);
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
flush: 'post' // watchEffect会在DOM挂载或者更新之前就会触发,此属性控制在DOM元素更新后运行
|
|
|
|
|
}
|
|
|
|
|
);
|
2025-09-04 09:03:42 +08:00
|
|
|
|
const setDeptId = (deptId: number) => {
|
|
|
|
|
deptIdRole.value = deptId;
|
|
|
|
|
};
|
2025-05-21 11:24:53 +08:00
|
|
|
|
/** 查询用户列表 */
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
const res = await api.listUser(proxy?.addDateRange(queryParams.value, dateRange.value));
|
|
|
|
|
loading.value = false;
|
|
|
|
|
userList.value = res.rows;
|
|
|
|
|
total.value = res.total;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 查询部门下拉树结构 */
|
|
|
|
|
const getDeptTree = async () => {
|
2025-07-11 19:16:57 +08:00
|
|
|
|
const res = await api.deptTreeSelect({ isShow: '1' });
|
2025-05-21 11:24:53 +08:00
|
|
|
|
deptOptions.value = res.data;
|
|
|
|
|
enabledDeptOptions.value = filterDisabledDept(res.data);
|
2025-08-28 22:24:49 +08:00
|
|
|
|
const projectList = await listProject();
|
|
|
|
|
projectOptions.value = projectList.rows;
|
2025-05-21 11:24:53 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 过滤禁用的部门 */
|
|
|
|
|
const filterDisabledDept = (deptList: DeptTreeVO[]) => {
|
|
|
|
|
return deptList.filter((dept) => {
|
|
|
|
|
if (dept.disabled) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (dept.children && dept.children.length) {
|
|
|
|
|
dept.children = filterDisabledDept(dept.children);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 节点单击事件 */
|
|
|
|
|
const handleNodeClick = (data: DeptVO) => {
|
|
|
|
|
queryParams.value.deptId = data.id;
|
|
|
|
|
handleQuery();
|
|
|
|
|
};
|
|
|
|
|
|
2025-08-28 03:35:18 +08:00
|
|
|
|
/** 部门选择变化 */
|
|
|
|
|
const handleAddProject = () => {
|
|
|
|
|
form.value.projectRoles.push({
|
|
|
|
|
projectId: '',
|
|
|
|
|
roleIds: []
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 删除项目 */
|
|
|
|
|
const delProject = (index: number) => {
|
|
|
|
|
form.value.projectRoles.splice(index, 1);
|
|
|
|
|
};
|
|
|
|
|
|
2025-05-21 11:24:53 +08:00
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
const handleQuery = () => {
|
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
const resetQuery = () => {
|
|
|
|
|
dateRange.value = ['', ''];
|
|
|
|
|
queryFormRef.value?.resetFields();
|
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
|
queryParams.value.deptId = undefined;
|
|
|
|
|
deptTreeRef.value?.setCurrentKey(undefined);
|
|
|
|
|
handleQuery();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
const handleDelete = async (row?: UserVO) => {
|
|
|
|
|
const userIds = row?.userId || ids.value;
|
|
|
|
|
const [err] = await to(proxy?.$modal.confirm('是否确认删除用户编号为"' + userIds + '"的数据项?') as any);
|
|
|
|
|
if (!err) {
|
|
|
|
|
await api.delUser(userIds);
|
|
|
|
|
await getList();
|
|
|
|
|
proxy?.$modal.msgSuccess('删除成功');
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 用户状态修改 */
|
|
|
|
|
const handleStatusChange = async (row: UserVO) => {
|
|
|
|
|
let text = row.status === '0' ? '启用' : '停用';
|
|
|
|
|
try {
|
|
|
|
|
await proxy?.$modal.confirm('确认要"' + text + '""' + row.userName + '"用户吗?');
|
|
|
|
|
await api.changeUserStatus(row.userId, row.status);
|
|
|
|
|
proxy?.$modal.msgSuccess(text + '成功');
|
|
|
|
|
} catch (err) {
|
|
|
|
|
row.status = row.status === '0' ? '1' : '0';
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
/** 跳转角色分配 */
|
|
|
|
|
const handleAuthRole = (row: UserVO) => {
|
|
|
|
|
const userId = row.userId;
|
|
|
|
|
router.push('/system/user-auth/role/' + userId);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 重置密码按钮操作 */
|
|
|
|
|
const handleResetPwd = async (row: UserVO) => {
|
|
|
|
|
const [err, res] = await to(
|
|
|
|
|
ElMessageBox.prompt('请输入"' + row.userName + '"的新密码', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
closeOnClickModal: false,
|
|
|
|
|
inputPattern: /^.{5,20}$/,
|
|
|
|
|
inputErrorMessage: '用户密码长度必须介于 5 和 20 之间',
|
|
|
|
|
inputValidator: (value) => {
|
|
|
|
|
if (/<|>|"|'|\||\\/.test(value)) {
|
|
|
|
|
return '不能包含非法字符:< > " \' \\ |';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
if (!err && res) {
|
|
|
|
|
await api.resetUserPwd(row.userId, res.value);
|
|
|
|
|
proxy?.$modal.msgSuccess('修改成功,新密码是:' + res.value);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 选择条数 */
|
|
|
|
|
const handleSelectionChange = (selection: UserVO[]) => {
|
|
|
|
|
ids.value = selection.map((item) => item.userId);
|
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 导入按钮操作 */
|
|
|
|
|
const handleImport = () => {
|
|
|
|
|
upload.title = '用户导入';
|
|
|
|
|
upload.open = true;
|
|
|
|
|
};
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
const handleExport = () => {
|
|
|
|
|
proxy?.download(
|
|
|
|
|
'system/user/export',
|
|
|
|
|
{
|
|
|
|
|
...queryParams.value
|
|
|
|
|
},
|
|
|
|
|
`user_${new Date().getTime()}.xlsx`
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
/** 下载模板操作 */
|
|
|
|
|
const importTemplate = () => {
|
|
|
|
|
proxy?.download('system/user/importTemplate', {}, `user_template_${new Date().getTime()}.xlsx`);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**文件上传中处理 */
|
|
|
|
|
const handleFileUploadProgress = () => {
|
|
|
|
|
upload.isUploading = true;
|
|
|
|
|
};
|
|
|
|
|
/** 文件上传成功处理 */
|
|
|
|
|
const handleFileSuccess = (response: any, file: UploadFile) => {
|
|
|
|
|
upload.open = false;
|
|
|
|
|
upload.isUploading = false;
|
|
|
|
|
uploadRef.value?.handleRemove(file);
|
|
|
|
|
ElMessageBox.alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + '</div>', '导入结果', {
|
|
|
|
|
dangerouslyUseHTMLString: true
|
|
|
|
|
});
|
|
|
|
|
getList();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 提交上传文件 */
|
|
|
|
|
function submitFileForm() {
|
|
|
|
|
uploadRef.value?.submit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 重置操作表单 */
|
|
|
|
|
const reset = () => {
|
|
|
|
|
form.value = { ...initFormData };
|
2025-08-28 03:35:18 +08:00
|
|
|
|
form.value.projectRoles = [
|
|
|
|
|
{
|
|
|
|
|
projectId: '',
|
|
|
|
|
roleIds: []
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
2025-05-21 11:24:53 +08:00
|
|
|
|
userFormRef.value?.resetFields();
|
|
|
|
|
};
|
|
|
|
|
/** 取消按钮 */
|
|
|
|
|
const cancel = () => {
|
|
|
|
|
dialog.visible = false;
|
|
|
|
|
reset();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
const handleAdd = async () => {
|
|
|
|
|
reset();
|
|
|
|
|
const { data } = await api.getUser();
|
2025-09-04 09:03:42 +08:00
|
|
|
|
type.value = 1;
|
2025-05-21 11:24:53 +08:00
|
|
|
|
dialog.visible = true;
|
|
|
|
|
dialog.title = '新增用户';
|
2025-09-03 17:28:50 +08:00
|
|
|
|
nextTick(() => {
|
|
|
|
|
editInfoRef.value?.open();
|
|
|
|
|
});
|
2025-05-21 11:24:53 +08:00
|
|
|
|
postOptions.value = data.posts;
|
|
|
|
|
form.value.password = initPassword.value.toString();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
const handleUpdate = async (row?: UserForm) => {
|
|
|
|
|
reset();
|
|
|
|
|
dialog.visible = true;
|
|
|
|
|
dialog.title = '修改用户';
|
2025-09-04 09:03:42 +08:00
|
|
|
|
type.value = 1;
|
|
|
|
|
form.value = row;
|
2025-09-03 17:28:50 +08:00
|
|
|
|
nextTick(() => {
|
|
|
|
|
editInfoRef.value?.open(row);
|
|
|
|
|
});
|
2025-08-28 03:35:18 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const validate = () => {
|
|
|
|
|
for (let i = 0; i < form.value.projectRoles.length; i++) {
|
|
|
|
|
const item = form.value.projectRoles[i];
|
|
|
|
|
if (!item.projectId || item.projectId.length === 0) {
|
|
|
|
|
proxy?.$modal.msgError(`第 ${i + 1} 行“项目列表”未填写`);
|
|
|
|
|
return false; // 阻止提交
|
|
|
|
|
}
|
|
|
|
|
if (!item.roleIds || item.roleIds.length === 0) {
|
|
|
|
|
proxy?.$modal.msgError(`第 ${i + 1} 行“角色”未填写`);
|
|
|
|
|
return false; // 阻止提交
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2025-05-21 11:24:53 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
const submitForm = () => {
|
2025-08-28 03:35:18 +08:00
|
|
|
|
const isValid = validate();
|
|
|
|
|
if (!isValid) return;
|
2025-05-21 11:24:53 +08:00
|
|
|
|
userFormRef.value?.validate(async (valid: boolean) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
form.value.userId ? await api.updateUser(form.value) : await api.addUser(form.value);
|
|
|
|
|
proxy?.$modal.msgSuccess('操作成功');
|
|
|
|
|
dialog.visible = false;
|
|
|
|
|
await getList();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 关闭用户弹窗
|
|
|
|
|
*/
|
|
|
|
|
const closeDialog = () => {
|
|
|
|
|
dialog.visible = false;
|
|
|
|
|
resetForm();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 重置表单
|
|
|
|
|
*/
|
|
|
|
|
const resetForm = () => {
|
|
|
|
|
userFormRef.value?.resetFields();
|
|
|
|
|
userFormRef.value?.clearValidate();
|
|
|
|
|
|
|
|
|
|
form.value.id = undefined;
|
|
|
|
|
form.value.status = '1';
|
|
|
|
|
};
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getDeptTree(); // 初始化部门数据
|
|
|
|
|
getList(); // 初始化列表数据
|
|
|
|
|
proxy?.getConfigKey('sys.user.initPassword').then((response) => {
|
|
|
|
|
initPassword.value = response.data;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
async function handleDeptChange(value: number | string) {
|
|
|
|
|
const response = await optionselect(value);
|
2025-07-11 19:16:57 +08:00
|
|
|
|
const roleList = await getRoleList(value);
|
2025-08-28 03:35:18 +08:00
|
|
|
|
|
2025-07-11 19:16:57 +08:00
|
|
|
|
roleOptions.value = roleList.data;
|
2025-05-21 11:24:53 +08:00
|
|
|
|
postOptions.value = response.data;
|
|
|
|
|
form.value.postIds = [];
|
2025-08-28 03:35:18 +08:00
|
|
|
|
form.value.projectRoles = [
|
|
|
|
|
{
|
|
|
|
|
projectId: [],
|
|
|
|
|
roleIds: []
|
|
|
|
|
}
|
|
|
|
|
];
|
2025-05-21 11:24:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const shuttleVisible = ref(false);
|
|
|
|
|
const selectedUserId = ref<number>();
|
|
|
|
|
const handleUpdateProject = (row) => {
|
|
|
|
|
if (row) {
|
|
|
|
|
selectedUserId.value = row.userId;
|
|
|
|
|
shuttleVisible.value = true;
|
|
|
|
|
}
|
|
|
|
|
};
|
2025-06-25 18:48:23 +08:00
|
|
|
|
|
|
|
|
|
const certDialog = ref(false);
|
|
|
|
|
const certId = ref<string | number>(undefined);
|
|
|
|
|
const fileUpload = ref<string>();
|
|
|
|
|
//上传证书
|
|
|
|
|
const handleUploadCert = (row: UserVO) => {
|
|
|
|
|
certId.value = row.userId;
|
|
|
|
|
fileUpload.value = row.filePath;
|
|
|
|
|
certDialog.value = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const uploadCert = async () => {
|
|
|
|
|
if (!fileUpload.value) {
|
|
|
|
|
proxy?.$modal.msgError('请上传证书目录');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let res = await uploadCertList({
|
|
|
|
|
userId: certId.value,
|
|
|
|
|
fileId: fileUpload.value
|
|
|
|
|
});
|
|
|
|
|
console.log(res);
|
|
|
|
|
|
|
|
|
|
certDialog.value = false;
|
|
|
|
|
proxy?.$modal.msgSuccess('上传证书目录成功');
|
|
|
|
|
};
|
2025-09-05 17:28:00 +08:00
|
|
|
|
const onTab = (val: number) => {
|
2025-09-03 17:28:50 +08:00
|
|
|
|
type.value = val;
|
2025-09-04 09:03:42 +08:00
|
|
|
|
if (val == 2) {
|
|
|
|
|
let obj = editInfoRef.value?.getInfoForm();
|
|
|
|
|
form.value = obj;
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
roleInfoRef.value?.open(form.value, deptIdRole.value);
|
|
|
|
|
});
|
|
|
|
|
}
|
2025-09-03 17:28:50 +08:00
|
|
|
|
};
|
2025-05-21 11:24:53 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
2025-09-03 17:28:50 +08:00
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.boxDetial {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2025-09-05 17:28:00 +08:00
|
|
|
|
align-items: start;
|
2025-09-04 09:03:42 +08:00
|
|
|
|
height: 680px;
|
2025-09-05 17:28:00 +08:00
|
|
|
|
gap: 20px;
|
|
|
|
|
|
2025-09-03 17:28:50 +08:00
|
|
|
|
.tab_info {
|
2025-09-05 17:28:00 +08:00
|
|
|
|
height: 40%;
|
2025-09-03 17:28:50 +08:00
|
|
|
|
width: 200px;
|
2025-09-05 17:28:00 +08:00
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 30px 10px;
|
2025-09-03 17:28:50 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-09-05 17:28:00 +08:00
|
|
|
|
border-radius: 0.5rem;
|
2025-09-03 17:28:50 +08:00
|
|
|
|
font-size: 18px;
|
2025-09-05 17:28:00 +08:00
|
|
|
|
.tab_item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 5px;
|
2025-09-03 17:28:50 +08:00
|
|
|
|
margin-bottom: 10px;
|
2025-09-05 17:28:00 +08:00
|
|
|
|
padding: 5px 0;
|
2025-09-03 17:28:50 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2025-09-05 17:28:00 +08:00
|
|
|
|
.tab_item:hover {
|
|
|
|
|
background-color: rgb(249, 250, 251);
|
|
|
|
|
}
|
2025-09-03 17:28:50 +08:00
|
|
|
|
.active {
|
|
|
|
|
color: #1890ff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tab_content {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: calc(100% - 200px);
|
|
|
|
|
padding: 20px 10px;
|
2025-09-05 17:28:00 +08:00
|
|
|
|
background: #fff;
|
|
|
|
|
border-radius: 0.5rem;
|
2025-09-03 17:28:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|