intelligentQA.ts 423 B

1234567891011
  1. import http from '@/api'
  2. // import dataManage from '@/assets/mock/dataManage.json'
  3. export const getHistoryDataApi = (userId: any) => {
  4. return http.get<any>(`/mock/kg/intelligentQA/historyData/${userId}`)
  5. }
  6. export const infoDataApi = (data: any) => {
  7. return http.post(`/mock/kg/intelligentQA/InfoData/`, data)
  8. }
  9. export const importFileApi = (data: any) => {
  10. return http.post('/mock/kg/dataManage/importData/', data)
  11. }