53 lines
1.3 KiB
Vue
53 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import Write from './components/Write.vue'
|
|
import { ContentDetailWrap } from '@/components/ContentDetailWrap'
|
|
import { ref, unref } from 'vue'
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
import { useRouter } from 'vue-router'
|
|
import { saveTableApi } from '@/api/table'
|
|
import { useEventBus } from '@/hooks/event/useEventBus'
|
|
|
|
const { emit } = useEventBus()
|
|
|
|
const { push, go } = useRouter()
|
|
|
|
const { t } = useI18n()
|
|
|
|
const writeRef = ref<ComponentRef<typeof Write>>()
|
|
|
|
const loading = ref(false)
|
|
|
|
const save = async () => {
|
|
const write = unref(writeRef)
|
|
const formData = await write?.submit()
|
|
if (formData) {
|
|
loading.value = true
|
|
const res = await saveTableApi(formData)
|
|
.catch(() => {})
|
|
.finally(() => {
|
|
loading.value = false
|
|
})
|
|
if (res) {
|
|
emit('getList', 'add')
|
|
push('/example/example-page')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<ContentDetailWrap :title="t('exampleDemo.add')" @back="push('/example/example-page')">
|
|
<Write ref="writeRef" />
|
|
|
|
<template #header>
|
|
<BaseButton @click="go(-1)">
|
|
{{ t('common.back') }}
|
|
</BaseButton>
|
|
<BaseButton type="primary" :loading="loading" @click="save"
|
|
>{{ t('exampleDemo.save') }}
|
|
</BaseButton>
|
|
</template>
|
|
</ContentDetailWrap>
|
|
</template>
|
|
@/hooks/event/useEventBus
|