房间大乱斗调试

This commit is contained in:
kron
2025-06-16 22:43:39 +08:00
parent 3139be5412
commit ca846f13ea
4 changed files with 83 additions and 43 deletions

View File

@@ -81,9 +81,9 @@ onMounted(async () => {
mode="widthFix"
@click="() => toPage('/pages/my-device')"
/>
<text>{{
user.id && !device.deviceId ? "请绑定设备" : "我的弓箭"
}}</text>
<text v-if="!user.id">我的弓箭</text>
<text v-if="user.id && !device.deviceId">请绑定设备</text>
<text v-if="user.id && device.deviceId">{{ device.deviceName }}</text>
<image
src="../static/a2@2x.png"
mode="widthFix"
@@ -207,6 +207,7 @@ onMounted(async () => {
top: 67%;
left: 50%;
transform: translate(-50%, -50%);
white-space: nowrap;
font-size: 13px;
color: #b3b3b3;
}