wkw 1 day ago
parent
commit
dc952fa184
2 changed files with 3 additions and 1 deletions
  1. 2 0
      src/api/game.js
  2. 1 1
      src/pages/trade/index.vue

+ 2 - 0
src/api/game.js

@@ -29,6 +29,7 @@ export const userPrize = (data) => {
       url: '/api/game/user/prize',
       method: 'post',
       data,
+      showLoading: false
     })
   }
   // 领取用户奖金
@@ -37,6 +38,7 @@ export const claimPrize = (data) => {
       url: '/api/game/claim/prize',
       method: 'post',
       data,
+      showLoading: false
     })
   }
 // 校验报名竞赛

+ 1 - 1
src/pages/trade/index.vue

@@ -496,7 +496,7 @@ const getClaimPrize = async (hash) =>{
     })
     setTimeout(() => {
       getGameRank(gameDetail.value?.id)
-    }, 800);
+    }, 500);
   }
 }