diff --git a/apps/src/views/operate/baishun-game-manage.vue b/apps/src/views/operate/baishun-game-manage.vue index 46e5866..881dfd3 100644 --- a/apps/src/views/operate/baishun-game-manage.vue +++ b/apps/src/views/operate/baishun-game-manage.vue @@ -45,7 +45,7 @@ defineOptions({ name: 'OperateBaishunGameManage' }); function createGameForm(sysOrigin = '') { return { amounts: '', - category: 'OTHER', + category: 'CHAT_ROOM', clientOrigin: 'COMMON', cover: '', fullScreen: true as any, diff --git a/apps/src/views/operate/constants.ts b/apps/src/views/operate/constants.ts index 057ff60..a9acea6 100644 --- a/apps/src/views/operate/constants.ts +++ b/apps/src/views/operate/constants.ts @@ -57,6 +57,7 @@ export const GAME_CLIENT_ORIGIN_OPTIONS = [ ]; export const GAME_CATEGORY_OPTIONS = [ + { value: 'CHAT_ROOM', name: 'Chat Room' }, { value: 'FISH_CLASS', name: 'Fish Class' }, { value: 'SLOTS_CLASS', name: 'Slots Class' }, { value: 'GREEDY_CLASS', name: 'Greedy Class' },