fix: model name

pull/1/MERGE
xingyuv 2023-03-20 17:18:17 +08:00
parent fbb15cde59
commit 91163752f3
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
</BasicTable>
</div>
</template>
<script lang="ts" setup name="Post">
<script lang="ts" setup name="LoginLog">
import { BasicTable, useTable } from '@/components/Table'
import { LoginLogReqVO, exportLoginLogApi, getLoginLogPageApi } from '@/api/system/loginLog'
import { columns, searchFormSchema } from './loginLog.data'

View File

@ -38,7 +38,7 @@ const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data
}
})
const getTitle = computed(() => (!unref(isUpdate) ? '新增岗位' : '编辑岗位'))
const getTitle = computed(() => (!unref(isUpdate) ? '新增公告' : '编辑公告'))
async function handleSubmit() {
try {

View File

@ -29,7 +29,7 @@
<NoticeModal @register="registerModal" @success="reload()" />
</div>
</template>
<script lang="ts" setup name="Post">
<script lang="ts" setup name="Notice">
import { BasicTable, useTable, TableAction } from '@/components/Table'
import { deleteNoticeApi, getNoticePageApi } from '@/api/system/notice'
import { useModal } from '@/components/Modal'