潘志宝
2024-12-25 02bbf25456f3a0165313340be277cfa4a2b3b24f
src/api/model/mpk/mpk.ts
@@ -10,7 +10,8 @@
  pyModule: string
  remark?: string
  modelMethods: object
  filePath: string
  filePath: string,
  menuAndGroup: any
}
export const getPage = async (params: PageParam) => {
@@ -38,9 +39,13 @@
}
export const modelRun = (params) => {
  return request.post({ url: '/model/mpk/api/run', data: params })
  return request.post({ url: '/model/mpk/api/test', data: params })
}
export const list = () => {
  return request.get({ url: '/model/mpk/file/list'})
export const list = (params) => {
  return request.get({ url: '/model/mpk/file/list',  params})
}
export const publish = (params) => {
  return request.post({ url: '/model/mpk/file/publish', data: params})
}