潘志宝
2024-12-25 02bbf25456f3a0165313340be277cfa4a2b3b24f
提交 | 用户 | 时间
9c91ad 1 import request from '@/config/axios'
D 2
3 export const getPage = async (params: PageParam) => {
4   return await request.get({ url: '/model/mpk/projectPackageHistory/page', params })
5 }
6
7 export const download = (params) => {
8   return request.download({ url: '/model/mpk/projectPackageHistory/download', params })
9 }
10
11 export const getPackageModel = async (params: PageParam) => {
12   return await request.get({ url: '/model/mpk/projectPackageHistory/getPackageModel', params })
13 }