瀏覽代碼

bug fix、更新小游戏

任一存 2 年之前
父節點
當前提交
65878fe8bb

二進制
game/public/unity/lost-children/Build/H5Game-ChinaSecuritiesMuseumMaze.data.unityweb


二進制
game/public/unity/lost-children/Build/H5Game-ChinaSecuritiesMuseumMaze.framework.js.unityweb


二進制
game/public/unity/lost-children/Build/H5Game-ChinaSecuritiesMuseumMaze.wasm.unityweb


+ 1 - 1
game/src/views/ShopView.vue

@@ -163,7 +163,7 @@ function onClickPrizeItem(prizeItem) {
 
 const recordList = ref([])
 getBonusPointRecord().then((res) => {
-  recordList.value = res.value.filter((item) => {
+  recordList.value = res.filter((item) => {
     return item.score !== 0 && item.score !== '0' && item.score !== '+0' && item.score !== '-0'
   })
 })