liukangdong
2024-05-27 1ca93a04e85633bee47e809c9618356f0a42a393
h5/api/index.js
@@ -1,5 +1,6 @@
import { http } from '@/utils/service.js'
export * from '@/utils/config.js'
export * from './visitor'
// 查询字典值数据
export const getSystemDictData = (data) => {
@@ -9,15 +10,10 @@
  })
}
// 获取题目数据
export const getProblemsVO = () => {
export const getProblemsVO = (data) => {
  return http({
    url: 'visitsAdmin/cloudService/web/problem/getProblemsVO'
  })
}
// 访客预约详情
export const visitorSubDetail = (data) => {
  return http({
    url: 'visitsAdmin/cloudService/web/visitor/detail',
    url: 'visitsAdmin/cloudService/web/problem/getProblemsVO',
    method: 'get',
    data
  })
}