移除渠道ChannelManage

This commit is contained in:
2026-03-10 10:45:23 +08:00
parent a6d87d5c0d
commit 7716929447
11 changed files with 31 additions and 1201 deletions

View File

@@ -11,7 +11,7 @@ export default {
*/
list(params: Record<string, any>) {
return request.get<Api.Common.ApiPage>({
url: '/dice/reward_config/DiceRewardConfig/index',
url: '/core/dice/reward_config/DiceRewardConfig/index',
params
})
},
@@ -23,7 +23,7 @@ export default {
*/
read(id: number | string) {
return request.get<Api.Common.ApiData>({
url: '/dice/reward_config/DiceRewardConfig/read?id=' + id
url: '/core/dice/reward_config/DiceRewardConfig/read?id=' + id
})
},
@@ -34,7 +34,7 @@ export default {
*/
save(params: Record<string, any>) {
return request.post<any>({
url: '/dice/reward_config/DiceRewardConfig/save',
url: '/core/dice/reward_config/DiceRewardConfig/save',
data: params
})
},
@@ -46,7 +46,7 @@ export default {
*/
update(params: Record<string, any>) {
return request.put<any>({
url: '/dice/reward_config/DiceRewardConfig/update',
url: '/core/dice/reward_config/DiceRewardConfig/update',
data: params
})
},
@@ -58,7 +58,7 @@ export default {
*/
delete(params: Record<string, any>) {
return request.del<any>({
url: '/dice/reward_config/DiceRewardConfig/destroy',
url: '/core/dice/reward_config/DiceRewardConfig/destroy',
data: params
})
}