123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <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, useRoute } from 'vue-router'
- import { saveTableApi, getTableDetApi } from '@/api/table'
- import { TableData } from '@/api/table/types'
- import { useEmitt } from '@/hooks/event/useEmitt'
- const { emitter } = useEmitt()
- const { push, go } = useRouter()
- const { query } = useRoute()
- const { t } = useI18n()
- const currentRow = ref<Nullable<TableData>>(null)
- const getTableDet = async () => {
- const res = await getTableDetApi(query.id as string)
- if (res) {
- currentRow.value = res.data
- }
- }
- getTableDet()
- 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) {
- emitter.emit('getList', 'editor')
- push('/example/example-page')
- }
- }
- }
- </script>
- <template>
- <ContentDetailWrap :title="t('exampleDemo.edit')" @back="push('/example/example-page')">
- <Write ref="writeRef" :current-row="currentRow" />
- <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/useEmitt
|