tournament.js 270 B

1234567
  1. const http = uni.$uv.http;
  2. // 赛事详情
  3. export const matchDetailInfo = (id) => http.get(`/api/match/info/${id}`);
  4. // 赛事详情里面的项目列表
  5. export const projectListByMatchId = (params) =>
  6. http.get(`/api/competition/competitionProject/page`, { params });