match.js 10.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
import request from '@/utils/request'

function getMaList(params) {
  return request({
    url: `/ztx-match/league/competition/webList`,
    method: 'get',
    params: params
  })
}

function getMatchById(params) {
  return request({
    url: `ztx-match/league/competition/detail`,
    method: 'get',
    params: params
  })
}

function getMySignCptList(query) {
  return request({
    url: 'ztx-match/league/competition/getMySignCptList',
    method: 'get',
    params: query
  })
}

function getMySignDetailById(params) {
  return request({
    url: `/league/sign/getMySignPage`,
    method: 'get',
    params: params
  })
}

// 获取赛事下的已报团队
function getGroupListByCptId(cptId) {
  return request({
    url: `ztx-match/league/group/getGroupListByCptId/${cptId}`,
    method: 'get'
  })
}

function getMyPersonInfoWithcptId(cptId) {
  return request({
    url: `ztx-match/systemj/personInfo/getMyPersonInfo/${cptId}`,
    method: 'get'
  })
}

function getMyPersonInfo() {
  return request({
    url: `/ztx-match/systemj/personInfo/getMyPersonInfo`,
    method: 'get'
  })
}

function countryList() {
  return request({
    url: `/ztx-match/systemj/country/countryList`,
    method: 'get'
  })
}

function saveMyBaseInfo(data) {
  return request({
    url: `/ztx-match/systemj/personInfo/saveMyBaseInfo`,
    method: 'post',
    data: data
  })
}

// 发送手机验证码
function getCaptchaSms(data) {
  return request({
    url: `/captchaSmsByCheckCode`,
    method: 'post',
    data: data
  })
}

function getMyGroupList() {
  return request({
    url: `/ztx-match/league/group/getMyGroupList`,
    method: 'get'
  })
}

// 根据Id获取我的团队
function getGroupById(groupId) {
  return request({
    url: `ztx-match/league/group/getMyGroup/${groupId}`,
    method: 'get'
  })
}

function regionsList() {
  return request({
    url: `/ztx-match/systemj/region/regionsList`,
    method: 'get'
  })
}

// 新建团队
function saveMyGroup(data) {
  return request({
    url: `ztx-match/league/group/saveMyGroup`,
    method: 'post',
    data: data
  })
}

// 退出团队
function leaveGroup(groupId) {
  return request({
    url: `/systemj/personInfo/leaveGroup/${groupId}`,
    method: 'post'
  })
}

// 根据Id获取人员信息
function getPersonInfoById(id) {
  return request({
    url: `ztx-match/systemj/personInfo/${id}`,
    method: 'get'
  })
}

// 保存补充信息
function saveSupplementInfo(data) {
  return request({
    url: `ztx-match/league/competitionPersonInfo/savePersonInfo`,
    method: 'post',
    data: data
  })
}

// 获取补充信息
function getSupplementInfo(id) {
  return request({
    url: `ztx-match/league/competitionPersonInfo/${id}`,
    method: 'get'
  })
}

function getMySignInfo(data) {
  return request({
    url: `ztx-match/league/sign/getMySignInfo`,
    method: 'post',
    data: data
  })
}

function getGroupListByProjectId(cptProjectId) {
  return request({
    url: `/league/competitionGroup/getGroupListByProjectId/${cptProjectId}`,
    method: 'get'
  })
}

function getLeveListByGroupId(cptGroupId) {
  return request({
    url: `/league/competitionLevel/getLeveListByGroupId/${cptGroupId}`,
    method: 'get'
  })
}

function saveMyTeam(data) {
  return request({
    url: `ztx-match/league/team/saveMyTeam`,
    method: 'post',
    data: data
  })
}

function getMyOrderList(params) {
  return request({
    url: `/ztx-match/league/signOrder/getMyOrderList`,
    method: 'get',
    params: params
  })
}

function getMySignListFromOrderList(orderId) {
  return request({
    url: `/league/sign/getMySignListFromOrderList/${orderId}`,
    method: 'get'
  })
}

function getMyOrderDetail(orderId) {
  return request({
    url: `/ztx-match/league/signOrder/getMyOrderDetail/${orderId}`,
    method: 'get'
  })
}

function getVenueList(query) {
  return request({
    url: `/systemj/venue/queryPageListForWeb`,
    method: 'get',
    params: query
  })
}

function getVenueDetail(id) {
  return request({
    url: `/systemj/venue/detailForWeb/${id}`,
    method: 'get'
  })
}

// 获取团队下的队伍
function getMyTeamList(cptId, groupId) {
  return request({
    url: `ztx-match/league/team/getTeamList/${cptId}/${groupId}`,
    method: 'get'
  })
}

function getMyGroupForCpt(groupId, cptId) {
  return request({
    url: `ztx-match/league/group/getMyGroupForCpt/${groupId}/${cptId}`,
    method: 'get'
  })
}

function getMyGroupForCptFilter(groupId, cptId, query) {
  return request({
    url: `ztx-match/league/group/getMyGroupForCptFilter/${groupId}/${cptId}`,
    method: 'post',
    data: query
  })
}

// 获取团队报名时已选人员
function getChooseDoneGroupCoachs(cptId, groupId) {
  return request({
    url: `ztx-match/league/unitCompetitionRole/getGroupInfo/${cptId}/${groupId}`,
    method: 'get'
  })
}

// 获取个人报名时已选人员
function getChooseDoneSingleCoachs(cptId) {
  return request({
    url: `ztx-match/league/unitCompetitionRole/getPersonInfo/${cptId}`,
    method: 'get'
  })
}

function savePersonForMyGroup(data) {
  return request({
    url: `ztx-match/systemj/personInfo/savePersonForMyGroup`,
    method: 'post',
    data: data
  })
}

function savePersonForMyPerson(data) {
  return request({
    url: `ztx-match/systemj/personInfo/savePersonForMyPerson`,
    method: 'post',
    data: data
  })
}

// 人员修改
function editPersonInfo(params) {
  return request({
    url: `/systemj/personInfo`,
    method: 'put',
    data: params
  })
}

// 人员删除
function delPerson(id) {
  return request({
    url: `ztx-match/systemj/personInfo/${id}`,
    method: 'delete'
  })
}

function singleSignSavePerson(data) {
  return request({
    url: `ztx-match/league/unitCompetitionRole/savePersonInfo`,
    method: 'post',
    data: data
  })
}

function groupSignSavePerson(data) {
  return request({
    url: `ztx-match/league/unitCompetitionRole/saveGroupInfo`,
    method: 'post',
    data: data
  })
}

function getCanSignProjectList(cptId) {
  return request({
    url: `/league/competitionProject/getCanSignProjectListFromSelectPerson/${cptId}`,
    method: 'get'
  })
}

function getCanSignGroupListFromSelectPerson(projectId, personId) {
  return request({
    url: `/league/competitionGroup/getCanSignGroupListFromSelectPerson/${projectId}/${personId}`,
    method: 'get'
  })
}

function getCanSignlevelListFromSelectPerson(groupId, personId) {
  return request({
    url: `/league/competitionLevel/getCanSignLevelListFromSelectPerson/${groupId}/${personId}`,
    method: 'get'
  })
}
function delRank(id) {
  return request({
    url: `ztx-match/league/team/${id}`,
    method: 'delete'
  })
}
function getCanSignLevelPerson(data) {
  return request({
    url: `ztx-match/league/competitionLevel/getCanSignLevelPerson`,
    method: 'post',
    data: data
  })
}
function sportsmanDone(data) {
  return request({
    url: `ztx-match/league/sign/signUp`,
    method: 'post',
    data: data
  })
}
// 删除报名接口
function deleteSign(id) {
  return request({
    url: `ztx-match/league/sign/deleteSign/${id}`,
    method: 'post'
  })
}
// 选择运动员的补充信息表头
function getCptExtraInfo(cptId) {
  return request({
    url: `ztx-match/league/competition/getCptExtraInfo/${cptId}`,
    method: 'get'
  })
}
function recoverMySign(data) {
  return request({
    url: `ztx-match/league/sign/recoverMySign`,
    method: 'post',
    data: data
  })
}
// 生成订单
function commitSign(data) {
  return request({
    url: `ztx-match/league/sign/commitSign`,
    method: 'post',
    data: data
  })
}
function getTotalFee(data) {
  return request({
    url: `ztx-match/league/expenseConfig/getTotalFee`,
    method: 'post',
    data: data
  })
}
function getMemberInfoByCptId(cptId) {
  return request({
    url: `ztx-match/systemj/member/editMemberCode/${cptId}`,
    method: 'get'
  })
}
function getTemplate() {
  return request({
    url: `/systemj/personInfo/getTemplate`,
    method: 'get'
  })
}
// 支付 orderId,payType
function payMatch(data) {
  return request({
    url: `ztx-match/league/signOrder/payForOrderFromPc`,
    method: 'post',
    data: data
  })
}
function cancelMyUnPayedOrder(orderId) {
  return request({
    url: `ztx-match/league/signOrder/cancelMyUnPayedOrder/${orderId}`,
    method: 'post'
  })
}
function getMySignListFromBaoXiang(data) {
  return request({
    url: `ztx-match/league/sign/getMySignListFromBaoXiang`,
    method: 'post',
    data: data
  })
}
function deleteMyGroup(groupId) {
  return request({
    url: `/league/group/deleteMyGroup/${groupId}`,
    method: 'post'
  })
}
function checkPerson(data) {
  return request({
    url: `ztx-match/systemj/personInfo/checkPersonInfoExist`,
    method: 'post',
    data: data
  })
}
function getMySignListTree(cptId, personId, teamId) {
  return request({
    url: `ztx-match/league/competitionProject/getAllInfoFromSelectPerson/${cptId}/${personId}/${teamId || 0}`,
    method: 'get'
  })
}
function getMySignInfoList(data) {
  return request({
    url: `ztx-match/league/sign/getMySignInfoList`,
    method: 'post',
    data: data
  })
}
function saveMyGroupExtraInfo(data) {
  return request({
    url: `ztx-match/league/competitionGroupInfo/saveMyGroupExtraInfo`,
    method: 'post',
    data: data
  })
}
function getMySignIds(cptId, personId, teamId) {
  return request({
    url: `ztx-match/league/sign/getSignEntityByPersonId/${cptId}/${personId}/${teamId || 0}`,
    method: 'get'
  })
}
function querySonLevel(parentId) {
  return request({
    url: `ztx-match/league/competitionSonLevel/querySonLevelByParentId/${parentId}`,
    method: 'get'
  })
}
function getPayedOrderPdf(cptId, groupId) {
  return request({
    url: `ztx-match/pdf/getPayedOrderPdf/${cptId}/${groupId}`,
    method: 'get'
  })
}

export {
  getMaList, getMatchById, getGroupListByCptId, getMyPersonInfo, getMyPersonInfoWithcptId,
  countryList, saveMyBaseInfo, getCaptchaSms, getMyGroupList, getGroupById, regionsList,
  saveMyGroup, leaveGroup, 
  getPersonInfoById, saveSupplementInfo, getSupplementInfo, getMySignInfo, getGroupListByProjectId,
  getLeveListByGroupId, saveMyTeam,
  getMySignCptList, getMySignDetailById, getMyOrderList, getMySignListFromOrderList, getMyOrderDetail,
  getVenueList, getVenueDetail, getMyTeamList,
  getMyGroupForCpt, getChooseDoneGroupCoachs, getChooseDoneSingleCoachs, savePersonForMyGroup, savePersonForMyPerson,
  editPersonInfo, delPerson, singleSignSavePerson, groupSignSavePerson,
  getCanSignProjectList, getCanSignGroupListFromSelectPerson, getCanSignlevelListFromSelectPerson,
  delRank, getCanSignLevelPerson, sportsmanDone, deleteSign, getCptExtraInfo,
  recoverMySign, commitSign, getTotalFee, getMemberInfoByCptId, payMatch, cancelMyUnPayedOrder,
  getMySignListFromBaoXiang, deleteMyGroup, checkPerson, getTemplate,

  getMySignListTree, getMySignInfoList, getMySignIds, querySonLevel,
  getMyGroupForCptFilter, saveMyGroupExtraInfo, getPayedOrderPdf
}