1234567891011 |
- import http from '@/api'
- // import dataManage from '@/assets/mock/dataManage.json'
- export const getHistoryDataApi = (userId: any) => {
- return http.get<any>(`/mock/kg/intelligentQA/historyData/${userId}`)
- }
- export const infoDataApi = (data: any) => {
- return http.post(`/mock/kg/intelligentQA/InfoData/`, data)
- }
- export const importFileApi = (data: any) => {
- return http.post('/mock/kg/dataManage/importData/', data)
- }
|