update:新增个人训练重连机制,修复海报

This commit is contained in:
2026-07-24 16:00:46 +08:00
parent f316d52cec
commit c5618fb60b
12 changed files with 811 additions and 69 deletions
+3 -3
View File
@@ -38,7 +38,7 @@ const isMember = (player = {}) => player.vip === true || player.sVip === true;
</script>
<template>
<view class="container" :style="{ paddingTop: showHeader ? '5px' : '0' }">
<view class="container">
<image
v-if="showHeader"
:src="`https://static.shelingxingqiu.com/shootmini/static/battle-header${players.length ? '-melee' : ''}.png`"
@@ -47,7 +47,7 @@ const isMember = (player = {}) => player.vip === true || player.sVip === true;
<view
v-if="!players.length && blueTeam.length && redTeam.length"
class="players"
:style="{ paddingTop: showHeader ? '15px' : '0' }"
:style="{ paddingTop: showHeader ? '48rpx' : '0' }"
>
<view>
<view
@@ -158,7 +158,7 @@ const isMember = (player = {}) => player.vip === true || player.sVip === true;
.container > image:first-child {
position: absolute;
width: 100%;
top: -5px;
/* top: -5px; */
z-index: 1;
pointer-events: none;
}