peng
2025-09-30 366b64ae257e883605e8347f20cc8a5dfa0863d3
1
2
3
4
5
6
7
8
9
10
import service from "../libs/axios";
 
 
export const getCardPackData = (params) =>{
  return service({
    url: "/cardPack",
    method: "GET",
    params: params
  })
}