fix: type warn

This commit is contained in:
xingyu
2023-04-23 19:35:14 +08:00
parent 6b7d092c29
commit fc366f18c8
12 changed files with 28 additions and 22 deletions

View File

@ -28,7 +28,7 @@ const props = defineProps({
id: propTypes.number.def(undefined)
})
const detailLoading = ref(false) // 表单的加载中
const detailData = ref({}) // 详情数据
const detailData = ref<any>({}) // 详情数据
const queryId = query.id as unknown as number // 从 URL 传递过来的 id 编号
/** 获得数据 */