|
|
@@ -120,7 +120,10 @@
|
|
|
>
|
|
|
</button>
|
|
|
<!-- 抗体大作战 -->
|
|
|
- <button class="game-entry antibody-battle-entry">
|
|
|
+ <button
|
|
|
+ class="game-entry antibody-battle-entry"
|
|
|
+ @click="onClickGameEntry(3)"
|
|
|
+ >
|
|
|
<img
|
|
|
class=""
|
|
|
src="@/assets/images/antibody-battle-entry.png"
|
|
|
@@ -141,7 +144,10 @@
|
|
|
>
|
|
|
</button>
|
|
|
<!-- 生态保护 -->
|
|
|
- <button class="game-entry enviroment-protection">
|
|
|
+ <button
|
|
|
+ class="game-entry enviroment-protection"
|
|
|
+ @click="onClickGameEntry(5)"
|
|
|
+ >
|
|
|
<img
|
|
|
class=""
|
|
|
src="@/assets/images/enviroment-protection.png"
|
|
|
@@ -150,7 +156,10 @@
|
|
|
>
|
|
|
</button>
|
|
|
<!-- 找回走失儿童 -->
|
|
|
- <button class="game-entry lost-children-entry">
|
|
|
+ <button
|
|
|
+ class="game-entry lost-children-entry"
|
|
|
+ @click="onClickGameEntry(6)"
|
|
|
+ >
|
|
|
<img
|
|
|
class=""
|
|
|
src="@/assets/images/lost-children-entry.png"
|
|
|
@@ -315,7 +324,12 @@ const entryFunctionList = [
|
|
|
})
|
|
|
},
|
|
|
function () {
|
|
|
-
|
|
|
+ router.push({
|
|
|
+ name: 'GameByUnity',
|
|
|
+ query: {
|
|
|
+ gameName: 'AntibodyBattle'
|
|
|
+ },
|
|
|
+ })
|
|
|
},
|
|
|
function () {
|
|
|
router.push({
|
|
|
@@ -326,10 +340,20 @@ const entryFunctionList = [
|
|
|
})
|
|
|
},
|
|
|
function () {
|
|
|
-
|
|
|
+ router.push({
|
|
|
+ name: 'GameByUnity',
|
|
|
+ query: {
|
|
|
+ gameName: 'EnviromentProtection'
|
|
|
+ },
|
|
|
+ })
|
|
|
},
|
|
|
function () {
|
|
|
-
|
|
|
+ router.push({
|
|
|
+ name: 'GameByUnity',
|
|
|
+ query: {
|
|
|
+ gameName: 'LostChildren'
|
|
|
+ },
|
|
|
+ })
|
|
|
},
|
|
|
]
|
|
|
const isShowLoginChoice = ref(false)
|