155 lines
3.6 KiB
Vue
155 lines
3.6 KiB
Vue
<script setup>
|
||
import { ref, onMounted } from "vue";
|
||
import { onShow } from "@dcloudio/uni-app";
|
||
import AppBackground from "@/components/AppBackground.vue";
|
||
import Header from "@/components/Header.vue";
|
||
import ScreenHint from "@/components/ScreenHint.vue";
|
||
import BackToGame from "@/components/BackToGame.vue";
|
||
import { getCurrentGameAPI } from "@/apis";
|
||
import { debounce } from "@/util";
|
||
defineProps({
|
||
title: {
|
||
type: String,
|
||
default: "",
|
||
},
|
||
bgType: {
|
||
type: Number,
|
||
default: 0,
|
||
},
|
||
onBack: {
|
||
type: Function,
|
||
default: null,
|
||
},
|
||
overflow: {
|
||
type: String,
|
||
default: "auto",
|
||
},
|
||
isHome: {
|
||
type: Boolean,
|
||
default: false,
|
||
},
|
||
showBackToGame: {
|
||
type: Boolean,
|
||
default: true,
|
||
},
|
||
});
|
||
const isIos = ref(true);
|
||
const showHint = ref(false);
|
||
const hintType = ref(0);
|
||
const showGlobalHint = (type) => {
|
||
hintType.value = type;
|
||
showHint.value = true;
|
||
};
|
||
const hideGlobalHint = () => {
|
||
showHint.value = false;
|
||
};
|
||
onMounted(() => {
|
||
const deviceInfo = uni.getDeviceInfo();
|
||
isIos.value = deviceInfo.osName === "ios";
|
||
});
|
||
onShow(() => {
|
||
uni.$showHint = showGlobalHint;
|
||
uni.$hideHint = hideGlobalHint;
|
||
showHint.value = false;
|
||
});
|
||
const backToGame = debounce(async () => {
|
||
const result = await getCurrentGameAPI();
|
||
});
|
||
const goBack = () => {
|
||
uni.navigateBack();
|
||
};
|
||
</script>
|
||
|
||
<template>
|
||
<view>
|
||
<AppBackground :type="bgType" />
|
||
<Header v-if="!isHome" :title="title" :onBack="onBack" />
|
||
<BackToGame v-if="showBackToGame" />
|
||
<view
|
||
class="content"
|
||
:style="{
|
||
height: isHome ? '100vh' : `calc(100vh - ${isIos ? 196 : 170}rpx)`,
|
||
overflow,
|
||
}"
|
||
>
|
||
<slot></slot>
|
||
</view>
|
||
<ScreenHint :show="showHint">
|
||
<view v-if="hintType === 1" class="tip-content">
|
||
<text
|
||
>完成进行中的对局才能开启新的。您有正在进行中的对局,是否进入?</text
|
||
>
|
||
<view>
|
||
<button hover-class="none" @click="backToGame">进入</button>
|
||
<button hover-class="none" @click="() => (showHint = false)">
|
||
不进入
|
||
</button>
|
||
</view>
|
||
</view>
|
||
<view v-if="hintType === 2" class="tip-content">
|
||
<text>离开比赛可能会导致比赛失败,</text>
|
||
<text>确认离开吗?</text>
|
||
<view>
|
||
<button hover-class="none" @click="() => (showHint = false)">
|
||
继续比赛
|
||
</button>
|
||
<button hover-class="none" @click="goBack">离开比赛</button>
|
||
</view>
|
||
</view>
|
||
<view v-if="hintType === 3" class="tip-content">
|
||
<text>今天不玩了吗?</text>
|
||
<view>
|
||
<button hover-class="none" @click="goBack">确认</button>
|
||
<button hover-class="none" @click="() => (showHint = false)">
|
||
取消
|
||
</button>
|
||
</view>
|
||
</view>
|
||
</ScreenHint>
|
||
</view>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.content {
|
||
width: 100vw;
|
||
height: 100vh;
|
||
overflow-x: hidden;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
overflow-x: hidden;
|
||
}
|
||
.tip-content {
|
||
flex-direction: column;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: #fff;
|
||
width: 100%;
|
||
font-size: 14px;
|
||
}
|
||
.tip-content > text {
|
||
text-align: center;
|
||
}
|
||
.tip-content > view {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-around;
|
||
margin-top: 50rpx;
|
||
width: 100%;
|
||
}
|
||
.tip-content > view > button {
|
||
padding: 12px;
|
||
border-radius: 20px;
|
||
background-color: #fff6;
|
||
color: #fff;
|
||
width: 45%;
|
||
font-size: 16px;
|
||
}
|
||
.tip-content > view > button:first-child {
|
||
background-color: #fed847;
|
||
color: #000;
|
||
}
|
||
</style>
|