126 lines
3.1 KiB
Vue
126 lines
3.1 KiB
Vue
![]() |
<script setup lang="ts">
|
||
|
import { computed, ref } from 'vue';
|
||
|
|
||
|
import { useVbenDrawer } from '@vben/common-ui';
|
||
|
import { $t } from '@vben/locales';
|
||
|
|
||
|
import { useVbenForm } from '#/adapter';
|
||
|
import { clientAdd, clientUpdate } from '#/api/system/client';
|
||
|
import { dictDetailInfo } from '#/api/system/dict/dict-data';
|
||
|
import { tagTypes } from '#/components/dict';
|
||
|
|
||
|
import { drawerSchema } from './data';
|
||
|
import TagStylePicker from './tag-style-picker.vue';
|
||
|
|
||
|
const emit = defineEmits<{ reload: [] }>();
|
||
|
|
||
|
interface DrawerProps {
|
||
|
dictCode?: number | string;
|
||
|
dictType: string;
|
||
|
}
|
||
|
|
||
|
const isUpdate = ref(false);
|
||
|
const title = computed(() => {
|
||
|
return isUpdate.value ? $t('pages.common.edit') : $t('pages.common.add');
|
||
|
});
|
||
|
|
||
|
const [BasicForm, formApi] = useVbenForm({
|
||
|
commonConfig: {
|
||
|
componentProps: {
|
||
|
class: 'w-full',
|
||
|
},
|
||
|
formItemClass: 'col-span-2',
|
||
|
labelWidth: 80,
|
||
|
},
|
||
|
schema: drawerSchema(),
|
||
|
showDefaultActions: false,
|
||
|
wrapperClass: 'grid-cols-2',
|
||
|
});
|
||
|
|
||
|
/**
|
||
|
* 标签样式选择器
|
||
|
* default: 预设标签样式
|
||
|
* custom: 自定义标签样式
|
||
|
*/
|
||
|
const selectType = ref('default');
|
||
|
/**
|
||
|
* 根据标签样式判断是自定义还是默认
|
||
|
* @param listClass 标签样式
|
||
|
*/
|
||
|
function setupSelectType(listClass: string) {
|
||
|
// 判断是自定义还是预设
|
||
|
const isDefault = Reflect.has(tagTypes, listClass);
|
||
|
selectType.value = isDefault ? 'default' : 'custom';
|
||
|
}
|
||
|
|
||
|
const [BasicDrawer, drawerApi] = useVbenDrawer({
|
||
|
onCancel: handleCancel,
|
||
|
onConfirm: handleConfirm,
|
||
|
async onOpenChange(isOpen) {
|
||
|
if (!isOpen) {
|
||
|
return null;
|
||
|
}
|
||
|
drawerApi.drawerLoading(true);
|
||
|
|
||
|
const { dictCode, dictType } = drawerApi.getData() as DrawerProps;
|
||
|
isUpdate.value = !!dictCode;
|
||
|
formApi.setFieldValue('dictType', dictType);
|
||
|
|
||
|
if (dictCode && isUpdate.value) {
|
||
|
const record = await dictDetailInfo(dictCode);
|
||
|
setupSelectType(record.listClass);
|
||
|
for (const key in record) {
|
||
|
await formApi.setFieldValue(key, record[key as keyof typeof record]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
drawerApi.drawerLoading(false);
|
||
|
},
|
||
|
});
|
||
|
|
||
|
async function handleConfirm() {
|
||
|
try {
|
||
|
drawerApi.drawerLoading(true);
|
||
|
const { valid } = await formApi.validate();
|
||
|
if (!valid) {
|
||
|
return;
|
||
|
}
|
||
|
const data = await formApi.getValues();
|
||
|
await (isUpdate.value ? clientUpdate(data) : clientAdd(data));
|
||
|
emit('reload');
|
||
|
await handleCancel();
|
||
|
} catch (error) {
|
||
|
console.error(error);
|
||
|
} finally {
|
||
|
drawerApi.drawerLoading(false);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async function handleCancel() {
|
||
|
drawerApi.close();
|
||
|
await formApi.resetForm();
|
||
|
selectType.value = 'default';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 取消标签选中 必须设置为undefined才行
|
||
|
*/
|
||
|
async function handleDeSelect() {
|
||
|
await formApi.setFieldValue('listClass', undefined);
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<BasicDrawer :close-on-click-modal="false" :title="title" class="w-[600px]">
|
||
|
<BasicForm>
|
||
|
<template #listClass="slotProps">
|
||
|
<TagStylePicker
|
||
|
v-bind="slotProps"
|
||
|
v-model:select-type="selectType"
|
||
|
@deselect="handleDeSelect"
|
||
|
/>
|
||
|
</template>
|
||
|
</BasicForm>
|
||
|
</BasicDrawer>
|
||
|
</template>
|