orgManager/src/api/game/kill.js

25 lines
534 B
JavaScript
Raw Normal View History

2025-09-04 09:20:44 +08:00
import request from '@/utils/request'
/* ------------------------------- 游戏杀率管理start ------------------------------- */
// 查询原生游戏杀率列表
export function listKill(query) {
return request({
url: '/game/rate/list',
method: 'get',
params: query
})
}
// 修改原生游戏杀率
export function updateKill(data) {
return request({
url: '/game/rate',
method: 'put',
data: data
})
}
/* ------------------------------- 游戏杀率管理end ------------------------------- */