非线性用户建档列表管理

This commit is contained in:
2024-05-13 11:32:16 +08:00
parent cd2a09061e
commit 3784bd1efe
7 changed files with 2814 additions and 3521 deletions

View File

@@ -76,7 +76,7 @@ import { formatDate } from '@/utils/formatTime'
import { propTypes } from '@/utils/propTypes'
import { getUserReportById } from '@/api/supervision-boot/userReport/form'
defineOptions({ name: 'BpmOALeaveDetail' })
defineOptions({ name: 'BpmUserReportDetail' })
const { query } = useRoute() // 查询参数
@@ -85,7 +85,7 @@ const props = defineProps({
})
const detailLoading = ref(false) // 表单的加载中
const detailData = ref<any>({}) // 详情数据
const queryId = query.id as unknown as number // 从 URL 传递过来的 id 编号
const queryId = query.id as unknown as string // 从 URL 传递过来的 id 编号
/** 获得数据 */
const getInfo = async () => {