k94314517
2024-05-27 b5d0677d393f2df5147e43763530a0a802d67546
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { http } from '@/utils/service.js'
export * from '@/utils/config.js'
export * from './visitor'
 
// 查询字典值数据
export const getSystemDictData = (data) => {
  return http({
    url: 'visitsAdmin/cloudService/web/other/getSystemDictData',
    data
  })
}
// 获取题目数据
export const getProblemsVO = (data) => {
  return http({
    url: 'visitsAdmin/cloudService/web/problem/getProblemsVO',
    method: 'get',
    data
  })
}