1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!-- 游戏页面 -->
- <template>
- <view class="ezy-game-page">
- <!-- 返回按钮 -->
- <view class="ezy-nav-bar-icon"></view>
- <!-- 积分 -->
- <view class="ezy-jf-box game-jf-box">
- <icon class="jf-icon"></icon>
- <text class="jf-text" >{{credit}}</text>
- </view>
- <!-- 桌面食物 -->
- <foodVue :shiwuId="shiwuId" class="food-img-box" :class="'food-img'+shiwuId"></foodVue>
- <!-- 大鹅 4阶段 -->
- <gooseVue :growth="growth" :growthType="growthType" :progress="progress"
- class="game-goose-box" :class="'game-goose-box'+ growthType"></gooseVue>
- <!-- 食物选择 -->
- <foodSelectVue ref="foodSelectRef" :shiwuId="shiwuId" @weishi="onWeiShi"></foodSelectVue>
- <!-- 游戏说明 -->
- <view class="yxsm-btn"></view>
- </view>
- </template>
- <script setup>
- import {ref} from "vue";
- import foodVue from "./components/food.vue";
- import gooseVue from "./components/goose.vue";
- import foodSelectVue from "./components/foodSelect.vue";
- import { useGame } from "./useGame";
- const { credit,growth,growthType,progress,shiwuId ,handleWeishi } = useGame();
-
- const foodSelectRef = ref(null);
-
- function onWeiShi(data) {
- handleWeishi(data.id, () => {
- foodSelectRef.value.handleClose();
- })
- }
- </script>
- <style>
- </style>
|