This commit is contained in:
2026-06-15 15:25:43 +08:00
parent ddcbe8da72
commit aa87d55b33
103 changed files with 102 additions and 99 deletions

View File

@@ -1,5 +1,6 @@
import createAxios from '/@/utils/axios'
export const url = '/admin/Embed/'
export interface GameRtpParams {
provider: string
game_name: string
@@ -8,9 +9,11 @@ export interface GameRtpParams {
export function gameRtp(params: GameRtpParams) {
return createAxios({
url: '/admin/Embed/gameRtp',
url: url + 'gameRtp',
method: 'get',
params,
params: {
provider: 'A1',
},
})
}