mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 09:27:19 +08:00
* feat: 完善系统管理-用户管理页面 * feat: 上传头像 * feat: 重置密码 * feat: 分配角色 * chore: update type * chore: done
177 lines
4.4 KiB
Vue
177 lines
4.4 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import ReCol from "@/components/ReCol";
|
|
import { formRules } from "../utils/rule";
|
|
import { FormProps } from "../utils/types";
|
|
import { usePublicHooks } from "../../hooks";
|
|
|
|
const props = withDefaults(defineProps<FormProps>(), {
|
|
formInline: () => ({
|
|
title: "新增",
|
|
higherDeptOptions: [],
|
|
parentId: 0,
|
|
nickname: "",
|
|
username: "",
|
|
password: "",
|
|
phone: "",
|
|
email: "",
|
|
sex: "",
|
|
status: 1,
|
|
remark: ""
|
|
})
|
|
});
|
|
|
|
const sexOptions = [
|
|
{
|
|
value: 0,
|
|
label: "男"
|
|
},
|
|
{
|
|
value: 1,
|
|
label: "女"
|
|
}
|
|
];
|
|
const ruleFormRef = ref();
|
|
const { switchStyle } = usePublicHooks();
|
|
const newFormInline = ref(props.formInline);
|
|
|
|
function getRef() {
|
|
return ruleFormRef.value;
|
|
}
|
|
|
|
defineExpose({ getRef });
|
|
</script>
|
|
|
|
<template>
|
|
<el-form
|
|
ref="ruleFormRef"
|
|
:model="newFormInline"
|
|
:rules="formRules"
|
|
label-width="82px"
|
|
>
|
|
<el-row :gutter="30">
|
|
<re-col :value="12" :xs="24" :sm="24">
|
|
<el-form-item label="用户昵称" prop="nickname">
|
|
<el-input
|
|
v-model="newFormInline.nickname"
|
|
clearable
|
|
placeholder="请输入用户昵称"
|
|
/>
|
|
</el-form-item>
|
|
</re-col>
|
|
<re-col :value="12" :xs="24" :sm="24">
|
|
<el-form-item label="用户名称" prop="username">
|
|
<el-input
|
|
v-model="newFormInline.username"
|
|
clearable
|
|
placeholder="请输入用户名称"
|
|
/>
|
|
</el-form-item>
|
|
</re-col>
|
|
|
|
<re-col
|
|
:value="12"
|
|
:xs="24"
|
|
:sm="24"
|
|
v-if="newFormInline.title === '新增'"
|
|
>
|
|
<el-form-item label="用户密码" prop="password">
|
|
<el-input
|
|
v-model="newFormInline.password"
|
|
clearable
|
|
placeholder="请输入用户密码"
|
|
/>
|
|
</el-form-item>
|
|
</re-col>
|
|
<re-col :value="12" :xs="24" :sm="24">
|
|
<el-form-item label="手机号" prop="phone">
|
|
<el-input
|
|
v-model="newFormInline.phone"
|
|
clearable
|
|
placeholder="请输入手机号"
|
|
/>
|
|
</el-form-item>
|
|
</re-col>
|
|
|
|
<re-col :value="12" :xs="24" :sm="24">
|
|
<el-form-item label="邮箱" prop="email">
|
|
<el-input
|
|
v-model="newFormInline.email"
|
|
clearable
|
|
placeholder="请输入邮箱"
|
|
/>
|
|
</el-form-item>
|
|
</re-col>
|
|
<re-col :value="12" :xs="24" :sm="24">
|
|
<el-form-item label="用户性别">
|
|
<el-select
|
|
v-model="newFormInline.sex"
|
|
placeholder="请选择用户性别"
|
|
class="w-full"
|
|
clearable
|
|
>
|
|
<el-option
|
|
v-for="(item, index) in sexOptions"
|
|
:key="index"
|
|
:label="item.label"
|
|
:value="item.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</re-col>
|
|
|
|
<re-col :value="12" :xs="24" :sm="24">
|
|
<el-form-item label="归属部门">
|
|
<el-cascader
|
|
class="w-full"
|
|
v-model="newFormInline.parentId"
|
|
:options="newFormInline.higherDeptOptions"
|
|
:props="{
|
|
value: 'id',
|
|
label: 'name',
|
|
emitPath: false,
|
|
checkStrictly: true
|
|
}"
|
|
clearable
|
|
filterable
|
|
placeholder="请选择归属部门"
|
|
>
|
|
<template #default="{ node, data }">
|
|
<span>{{ data.name }}</span>
|
|
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
|
|
</template>
|
|
</el-cascader>
|
|
</el-form-item>
|
|
</re-col>
|
|
<re-col
|
|
:value="12"
|
|
:xs="24"
|
|
:sm="24"
|
|
v-if="newFormInline.title === '新增'"
|
|
>
|
|
<el-form-item label="用户状态">
|
|
<el-switch
|
|
v-model="newFormInline.status"
|
|
inline-prompt
|
|
:active-value="1"
|
|
:inactive-value="0"
|
|
active-text="启用"
|
|
inactive-text="停用"
|
|
:style="switchStyle"
|
|
/>
|
|
</el-form-item>
|
|
</re-col>
|
|
|
|
<re-col>
|
|
<el-form-item label="备注">
|
|
<el-input
|
|
v-model="newFormInline.remark"
|
|
placeholder="请输入备注信息"
|
|
type="textarea"
|
|
/>
|
|
</el-form-item>
|
|
</re-col>
|
|
</el-row>
|
|
</el-form>
|
|
</template>
|