| | |
| | | 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" }],
|
| | | 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: [{ pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/, message: "请输入正确的手机号码", trigger: "blur" }]
|
| | | }
|
| | |
| | | if (!value) return true;
|
| | | return data.label.indexOf(value) !== -1;
|
| | | };
|
| | |
|
| | | /** 根据名称筛选部门树 */
|
| | | watch(deptName, val => {
|
| | | proxy.$refs["deptTreeRef"].filter(val);
|
| | | });
|
| | |
|
| | | /** 查询部门下拉树结构 */
|
| | | function getDeptTree() {
|
| | | deptTreeSelect().then(response => {
|
| | | deptOptions.value = response.data;
|
| | | });
|
| | | };
|
| | |
|
| | | /** 查询用户列表 */
|
| | | function getList() {
|
| | | loading.value = true;
|
| | |
| | | total.value = res.total;
|
| | | });
|
| | | };
|
| | |
|
| | | /** 节点单击事件 */
|
| | | function handleNodeClick(data) {
|
| | | queryParams.value.deptId = data.id;
|
| | | handleQuery();
|
| | | };
|
| | |
|
| | | /** 搜索按钮操作 */
|
| | | function handleQuery() {
|
| | | queryParams.value.pageNum = 1;
|
| | | getList();
|
| | | };
|
| | |
|
| | | /** 重置按钮操作 */
|
| | | function resetQuery() {
|
| | | dateRange.value = [];
|
| | |
| | | proxy.$refs.deptTreeRef.setCurrentKey(null);
|
| | | handleQuery();
|
| | | };
|
| | |
|
| | | /** 删除按钮操作 */
|
| | | function handleDelete(row) {
|
| | | const userIds = row.userId || ids.value;
|
| | |
| | | proxy.$modal.msgSuccess("删除成功");
|
| | | }).catch(() => {});
|
| | | };
|
| | |
|
| | | /** 导出按钮操作 */
|
| | | function handleExport() {
|
| | | proxy.download("system/user/export", {
|
| | | ...queryParams.value,
|
| | | },`user_${new Date().getTime()}.xlsx`);
|
| | | };
|
| | |
|
| | | /** 用户状态修改 */
|
| | | function handleStatusChange(row) {
|
| | | let text = row.status === "0" ? "启用" : "停用";
|
| | |
| | | row.status = row.status === "0" ? "1" : "0";
|
| | | });
|
| | | };
|
| | |
|
| | | /** 更多操作 */
|
| | | function handleCommand(command, row) {
|
| | | switch (command) {
|
| | |
| | | break;
|
| | | }
|
| | | };
|
| | |
|
| | | /** 跳转角色分配 */
|
| | | function handleAuthRole(row) {
|
| | | const userId = row.userId;
|
| | | router.push("/system/user-auth/role/" + userId);
|
| | | };
|
| | |
|
| | | /** 重置密码按钮操作 */
|
| | | function handleResetPwd(row) {
|
| | | proxy.$prompt('请输入"' + row.userName + '"的新密码', "提示", {
|
| | |
| | | closeOnClickModal: false,
|
| | | inputPattern: /^.{5,20}$/,
|
| | | inputErrorMessage: "用户密码长度必须介于 5 和 20 之间",
|
| | | inputValidator: (value) => {
|
| | | if (/<|>|"|'|\||\\/.test(value)) {
|
| | | return "不能包含非法字符:< > \" ' \\\ |"
|
| | | }
|
| | | },
|
| | | }).then(({ value }) => {
|
| | | resetUserPwd(row.userId, value).then(response => {
|
| | | proxy.$modal.msgSuccess("修改成功,新密码是:" + value);
|
| | | });
|
| | | }).catch(() => {});
|
| | | };
|
| | |
|
| | | /** 选择条数 */
|
| | | function handleSelectionChange(selection) {
|
| | | ids.value = selection.map(item => item.userId);
|
| | | single.value = selection.length != 1;
|
| | | multiple.value = !selection.length;
|
| | | };
|
| | |
|
| | | /** 导入按钮操作 */
|
| | | function handleImport() {
|
| | | upload.title = "用户导入";
|
| | | upload.open = true;
|
| | | };
|
| | |
|
| | | /** 下载模板操作 */
|
| | | function importTemplate() {
|
| | | proxy.download("system/user/importTemplate", {
|
| | | }, `user_template_${new Date().getTime()}.xlsx`);
|
| | | };
|
| | |
|
| | | /**文件上传中处理 */
|
| | | const handleFileUploadProgress = (event, file, fileList) => {
|
| | | upload.isUploading = true;
|
| | | };
|
| | |
|
| | | /** 文件上传成功处理 */
|
| | | const handleFileSuccess = (response, file, fileList) => {
|
| | | upload.open = false;
|
| | |
| | | proxy.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
|
| | | getList();
|
| | | };
|
| | |
|
| | | /** 提交上传文件 */
|
| | | function submitFileForm() {
|
| | | proxy.$refs["uploadRef"].submit();
|
| | | };
|
| | |
|
| | | /** 重置操作表单 */
|
| | | function reset() {
|
| | | form.value = {
|
| | |
| | | };
|
| | | proxy.resetForm("userRef");
|
| | | };
|
| | |
|
| | | /** 取消按钮 */
|
| | | function cancel() {
|
| | | open.value = false;
|
| | | reset();
|
| | | };
|
| | |
|
| | | /** 新增按钮操作 */
|
| | | function handleAdd() {
|
| | | reset();
|
| | |
| | | form.value.password = initPassword.value;
|
| | | });
|
| | | };
|
| | |
|
| | | /** 修改按钮操作 */
|
| | | function handleUpdate(row) {
|
| | | reset();
|
| | |
| | | form.password = "";
|
| | | });
|
| | | };
|
| | |
|
| | | /** 提交按钮 */
|
| | | function submitForm() {
|
| | | proxy.$refs["userRef"].validate(valid => {
|