🐛 修复 accessLog、errorLog 在 IDEA 报错的问题

This commit is contained in:
YunaiV
2023-12-03 18:33:33 +08:00
parent 5eb30c7e85
commit 7748704639
2 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@ defineOptions({ name: 'ApiErrorLogDetail' })
const dialogVisible = ref(false) // 弹窗的是否展示
const detailLoading = ref(false) // 表单的加载中
const detailData = ref() // 详情数据
const detailData = ref({} as ApiErrorLog.ApiErrorLogVO) // 详情数据
/** 打开弹窗 */
const open = async (data: ApiErrorLog.ApiErrorLogVO) => {