133 lines
2.9 KiB
Vue
133 lines
2.9 KiB
Vue
<script setup lang="ts">
|
|
import { computed, ref } from 'vue';
|
|
|
|
import { useVbenModal } from '@vben/common-ui';
|
|
import { $t } from '@vben/locales';
|
|
|
|
import { useVbenForm } from '#/adapter';
|
|
import { configAdd, configUpdate } from '#/api/system/config';
|
|
import { getDictOptions } from '#/utils/dict';
|
|
|
|
const emit = defineEmits<{ reload: [] }>();
|
|
|
|
interface ModalProps {
|
|
update: boolean;
|
|
record?: any;
|
|
}
|
|
|
|
const isUpdate = ref(false);
|
|
const title = computed(() => {
|
|
return isUpdate.value ? $t('pages.common.edit') : $t('pages.common.add');
|
|
});
|
|
|
|
const [BasicForm, formApi] = useVbenForm({
|
|
schema: [
|
|
{
|
|
component: 'Input',
|
|
dependencies: {
|
|
show: () => false,
|
|
triggerFields: [''],
|
|
},
|
|
fieldName: 'configId',
|
|
label: '参数主键',
|
|
},
|
|
{
|
|
component: 'Input',
|
|
componentProps: {
|
|
placeholder: '请输入',
|
|
},
|
|
fieldName: 'configName',
|
|
label: '参数名称',
|
|
rules: 'required',
|
|
},
|
|
{
|
|
component: 'Input',
|
|
componentProps: {
|
|
placeholder: '请输入',
|
|
},
|
|
fieldName: 'configKey',
|
|
label: '参数键名',
|
|
rules: 'required',
|
|
},
|
|
{
|
|
component: 'Input',
|
|
componentProps: {
|
|
placeholder: '请输入',
|
|
},
|
|
fieldName: 'configValue',
|
|
label: '参数键值',
|
|
rules: 'required',
|
|
},
|
|
{
|
|
component: 'RadioGroup',
|
|
componentProps: {
|
|
buttonStyle: 'solid',
|
|
options: getDictOptions('sys_yes_no'),
|
|
optionType: 'button',
|
|
},
|
|
defaultValue: 'N',
|
|
fieldName: 'configType',
|
|
label: '是否内置',
|
|
rules: 'required',
|
|
},
|
|
{
|
|
component: 'Textarea',
|
|
componentProps: {
|
|
placeholder: '请输入',
|
|
},
|
|
fieldName: 'remark',
|
|
label: '备注',
|
|
},
|
|
],
|
|
showDefaultActions: false,
|
|
});
|
|
|
|
const [BasicModal, modalApi] = useVbenModal({
|
|
fullscreenButton: false,
|
|
onCancel: handleCancel,
|
|
onConfirm: handleConfirm,
|
|
onOpenChange: async (isOpen) => {
|
|
if (!isOpen) {
|
|
return null;
|
|
}
|
|
const { record, update } = modalApi.getData() as ModalProps;
|
|
isUpdate.value = update;
|
|
if (update && record) {
|
|
for (const key in record) {
|
|
await formApi.setFieldValue(key, record[key]);
|
|
}
|
|
}
|
|
},
|
|
});
|
|
|
|
async function handleConfirm() {
|
|
try {
|
|
modalApi.modalLoading(true);
|
|
const { valid } = await formApi.validate();
|
|
if (!valid) {
|
|
return;
|
|
}
|
|
const data = await formApi.getValues();
|
|
console.log(data);
|
|
await (isUpdate.value ? configUpdate(data) : configAdd(data));
|
|
emit('reload');
|
|
await handleCancel();
|
|
} catch (error) {
|
|
console.error(error);
|
|
} finally {
|
|
modalApi.modalLoading(false);
|
|
}
|
|
}
|
|
|
|
async function handleCancel() {
|
|
modalApi.close();
|
|
await formApi.resetForm();
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<BasicModal :title="title" class="w-[600px]">
|
|
<BasicForm />
|
|
</BasicModal>
|
|
</template>
|