基质喷涂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
319 B

5 months ago
  1. import httpRequest, { type BaseResponse } from "../httpRequest";
  2. type ResponseParams = {
  3. pageNum: number;
  4. pageSize: number;
  5. }
  6. export function getList(params:ResponseParams){
  7. return httpRequest<BaseResponse<string>>({
  8. url: "/api/matrixCraft/list",
  9. params: { ...params },
  10. method: "GET",
  11. });
  12. }