139 lines
2.8 KiB
Vue
139 lines
2.8 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 { 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 [BasicModal, modalApi] = useVbenModal({
|
||
|
fullscreenButton: false,
|
||
|
onCancel: handleCancel,
|
||
|
onConfirm: handleConfirm,
|
||
|
onOpenChange: (isOpen) => {
|
||
|
if (!isOpen) {
|
||
|
return null;
|
||
|
}
|
||
|
const { record, update } = modalApi.getData() as ModalProps;
|
||
|
isUpdate.value = update;
|
||
|
if (update && record) {
|
||
|
console.log(record);
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
|
||
|
function modalLoading(loading: boolean) {
|
||
|
modalApi.setState({ confirmLoading: loading, loading });
|
||
|
}
|
||
|
|
||
|
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,
|
||
|
});
|
||
|
|
||
|
function wait(ms: number) {
|
||
|
return new Promise((resolve) => {
|
||
|
setTimeout(resolve, ms);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
async function handleConfirm() {
|
||
|
try {
|
||
|
modalLoading(true);
|
||
|
const { results, valid } = await formApi.validate();
|
||
|
if (!valid) {
|
||
|
return;
|
||
|
}
|
||
|
console.log(results);
|
||
|
await wait(1000);
|
||
|
emit('reload');
|
||
|
await handleCancel();
|
||
|
} catch (error) {
|
||
|
console.error(error);
|
||
|
} finally {
|
||
|
modalLoading(false);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async function handleCancel() {
|
||
|
modalApi.close();
|
||
|
await formApi.resetForm();
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<BasicModal :title="title" class="w-[600px]">
|
||
|
<BasicForm />
|
||
|
</BasicModal>
|
||
|
</template>
|