2025-04-19 15:04:59 +08:00
|
|
|
import { getAction, deleteAction, putAction, postAction } from '@/api/manage'
|
|
|
|
|
|
2025-04-21 23:08:11 +08:00
|
|
|
const metaDataTypeTree = (params)=>getAction("/dataManager/getAllTableView",params);
|
|
|
|
|
const metaViewDataTypeTree = (params)=>getAction("/dataManager/getAllTableView",params);
|
2025-04-19 15:04:59 +08:00
|
|
|
const metaDatalist = (params)=>getAction("/dataManager/getTableColumns",params);
|
2025-04-19 20:38:47 +08:00
|
|
|
const tableDataList = (params)=>getAction("/dataManager/getTableData",params);
|
2025-04-20 16:38:14 +08:00
|
|
|
const tableIndexes = (params)=>getAction("/tableIndex/getTableIndexes",params);
|
2025-04-20 23:17:42 +08:00
|
|
|
const DmExportTool = (params)=>postAction("/dataManager/DmExportTool",params);
|
2025-04-19 15:04:59 +08:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
metaDataTypeTree,
|
2025-04-21 23:08:11 +08:00
|
|
|
metaViewDataTypeTree,
|
2025-04-19 20:38:47 +08:00
|
|
|
metaDatalist,
|
2025-04-20 23:17:42 +08:00
|
|
|
tableIndexes,
|
|
|
|
|
tableDataList,
|
|
|
|
|
DmExportTool
|
2025-04-19 15:04:59 +08:00
|
|
|
}
|