This commit is contained in:
Putoo
2026-05-19 18:34:24 +08:00
parent 24c784e6a4
commit 2c85872abd
10 changed files with 341 additions and 61 deletions

View File

@@ -1,12 +1,33 @@
<template>
<slot />
<div class="main">
<slot />
</div>
<div class="content ">
<button class="btn btn-ret" @click="GoBack">返回</button><br />
<Abar href="/map">返回游戏</Abar>
</div>
<div class="clear"></div>
<div class="foot">
<div class="common">
<Abar href="/">首页</Abar>-
<Abar href="/">挂机</Abar>-
<a target="_blank" href="https://work.weixin.qq.com/kfid/kfc86bc348120aea3e7">反馈</a>
</div>
<div class="timeService">
小G报时({{ TimeExtend.Now("HH:mm") }})
</div>
<p style="font-weight:bold;font-size:14px">官方QQ群931835791</p>
</div>
</template>
<script setup lang="ts">
const router = useRouter()
//返回
const GoBack = (): void => {
router.back();
}
</script>
<style scoped>
</style>
<style scoped></style>