1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <BasicModal v-bind="$attrs" @register="registerModal" :title="getTitle" @ok="handleSubmit">
- <BasicForm @register="registerForm" />
- </BasicModal>
- </template>
- <script lang="ts">
- import { defineComponent, ref, computed, unref } from 'vue';
- import { BasicModal, useModalInner } from '/@/components/Modal';
- import { BasicForm, useForm } from '/@/components/Form/index';
- import { accountFormSchema } from './account.data';
- export default defineComponent({
- name: 'AccountModal',
- components: { BasicModal, BasicForm },
- setup() {
- const isUpdate = ref(true);
- const [registerForm, { setFieldsValue, validate }] = useForm({
- labelWidth: 100,
- schemas: accountFormSchema,
- showActionButtonGroup: false,
- actionColOptions: {
- span: 23,
- },
- });
- const [registerModal, { setModalProps }] = useModalInner((data) => {
- setModalProps({ confirmLoading: false });
- isUpdate.value = !!data?.isUpdate;
- if (unref(isUpdate)) {
- setFieldsValue({
- ...data.record,
- });
- }
- });
- const getTitle = computed(() => (!unref(isUpdate) ? '新增账号' : '编辑账号'));
- async function handleSubmit() {
- try {
- const values = await validate();
- setModalProps({ confirmLoading: true });
- // TODO custom api
- console.log(values);
- } finally {
- setModalProps({ confirmLoading: false });
- }
- }
- return { registerModal, registerForm, getTitle, handleSubmit };
- },
- });
- </script>
|