2025-05-01 16:36:24 +08:00
|
|
|
<script setup>
|
|
|
|
|
import AppBackground from "@/components/AppBackground.vue";
|
2025-05-01 21:50:12 +08:00
|
|
|
import Header from "@/components/Header.vue";
|
2025-05-01 16:36:24 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<AppBackground />
|
2025-05-01 21:50:12 +08:00
|
|
|
<Header title="好友约战" />
|
2025-05-01 16:36:24 +08:00
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.back-btn {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 2rem;
|
|
|
|
|
left: 2rem;
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
background-color: #007aff;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-hover {
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
|
|
|
|
</style>
|