<script setup lang="ts">
|
import type { Role } from '#/api/system/user/model';
|
|
import { computed, h, ref } from 'vue';
|
|
import { useVbenDrawer } from '@vben/common-ui';
|
import { $t } from '@vben/locales';
|
import { cloneDeep } from '@vben/utils';
|
|
import { Tag } from 'ant-design-vue';
|
|
import { useVbenForm } from '#/adapter/form';
|
import { findUserInfo, userAdd, userUpdate } from '#/api/system/user';
|
import { authScopeOptions } from '#/views/system/role/data';
|
|
import { drawerSchema } from './data';
|
|
const emit = defineEmits<{ reload: [] }>();
|
|
const isUpdate = ref(false);
|
const title = computed(() => {
|
return isUpdate.value ? $t('pages.common.edit') : $t('pages.common.add');
|
});
|
|
const [BasicForm, formApi] = useVbenForm({
|
commonConfig: {
|
formItemClass: 'col-span-2',
|
componentProps: {
|
class: 'w-full',
|
},
|
labelWidth: 80,
|
},
|
schema: drawerSchema(),
|
showDefaultActions: false,
|
wrapperClass: 'grid-cols-2',
|
});
|
|
/**
|
* 生成角色的自定义label
|
* 也可以用option插槽来做
|
* renderComponentContent: () => ({
|
option: ({value, label, [disabled, key, title]}) => '',
|
}),
|
*/
|
function genRoleOptionlabel(role: Role) {
|
const found = authScopeOptions.find((item) => item.value === role.dataScope);
|
if (!found) {
|
return role.roleName;
|
}
|
return h('div', { class: 'flex items-center gap-[6px]' }, [
|
h('span', null, role.roleName),
|
h(Tag, { color: found.color }, () => found.label),
|
]);
|
}
|
|
const [BasicDrawer, drawerApi] = useVbenDrawer({
|
onCancel: handleCancel,
|
onConfirm: handleConfirm,
|
async onOpenChange(isOpen) {
|
if (!isOpen) {
|
// 需要重置岗位选择
|
formApi.updateSchema([
|
{
|
componentProps: { options: [], placeholder: '请先选择部门' },
|
fieldName: 'postIds',
|
},
|
]);
|
return null;
|
}
|
drawerApi.drawerLoading(true);
|
const { id } = drawerApi.getData() as { id?: number | string };
|
isUpdate.value = !!id;
|
/** update时 禁用用户名修改 不显示密码框 */
|
formApi.updateSchema([
|
{ componentProps: { disabled: isUpdate.value }, fieldName: 'userName' },
|
{
|
dependencies: { show: () => !isUpdate.value, triggerFields: ['id'] },
|
fieldName: 'password',
|
},
|
]);
|
// 更新 && 赋值
|
const { postIds, posts, roleIds, roles, user } = await findUserInfo(id);
|
const postOptions = (posts ?? []).map((item) => ({
|
label: item.postName,
|
value: item.postId,
|
}));
|
formApi.updateSchema([
|
{
|
componentProps: {
|
// title用于选中后回填到输入框 默认为label
|
optionLabelProp: 'title',
|
options: roles.map((item) => ({
|
label: genRoleOptionlabel(item),
|
// title用于选中后回填到输入框 默认为label
|
title: item.roleName,
|
value: item.roleId,
|
})),
|
},
|
fieldName: 'roleIds',
|
},
|
{
|
componentProps: {
|
options: postOptions,
|
},
|
fieldName: 'postIds',
|
},
|
]);
|
|
if (user) {
|
await Promise.all([
|
// 添加基础信息
|
formApi.setValues(user),
|
// 添加角色和岗位
|
formApi.setFieldValue('postIds', postIds),
|
formApi.setFieldValue('roleIds', roleIds),
|
]);
|
}
|
drawerApi.drawerLoading(false);
|
},
|
});
|
|
async function handleConfirm() {
|
try {
|
drawerApi.drawerLoading(true);
|
const { valid } = await formApi.validate();
|
if (!valid) {
|
return;
|
}
|
const data = cloneDeep(await formApi.getValues());
|
await (isUpdate.value ? userUpdate(data) : userAdd(data));
|
emit('reload');
|
await handleCancel();
|
} catch (error) {
|
console.error(error);
|
} finally {
|
drawerApi.drawerLoading(false);
|
}
|
}
|
|
async function handleCancel() {
|
drawerApi.close();
|
await formApi.resetForm();
|
}
|
</script>
|
|
<template>
|
<BasicDrawer :close-on-click-modal="false" :title="title" class="w-[600px]">
|
<BasicForm />
|
</BasicDrawer>
|
</template>
|