赛会功能代码

This commit is contained in:
wuyibo
2022-11-18 16:30:44 +08:00
parent 4d0c485193
commit bb443dd429
13 changed files with 551 additions and 8 deletions

View File

@@ -25,7 +25,13 @@ export function addCompetition(data) {
data: data
})
}
export function genCompetitionCommonAqrSpread(data) {
return request({
url: '/system/competition/genCompetitionCommonAqrSpread',
method: 'post',
data: data
})
}
// 修改比赛信息
export function updateCompetition(data) {
return request({

View File

@@ -0,0 +1,20 @@
import request from '@/utils/request'
// 获取微信accessToken
export function getWxApplesAccessToken(query) {
return request({
url: '/system/wxApplesCode/getWxApplesAccessToken',
method: 'get',
params: query
})
}
// 查询约战详细
export function genWxApplesAqrCode(data) {
return request({
url: '/system/wxApplesCode/genWxApplesAqrCode',
method: 'post',
data: data
})
}