This commit is contained in:
yixu
2025-09-15 14:28:19 +08:00
parent 5957191ac0
commit f5f9d7c1a1
8 changed files with 71 additions and 57 deletions

View File

@@ -160,7 +160,7 @@ if (isLogin()) {
</script>
<template>
<div :show="show">
<div :show="show" class="main">
<div class="home-wrapper">
<div class="scene-item item-1" @click="handleLottery" :class="{ 'disabled': globalStore.draw_chances <= 0 }">
<img src="../assets/images/lottery.webp" alt="抽奖">
@@ -207,9 +207,13 @@ if (isLogin()) {
</template>
<style scoped>
.main {
height: 100%;
overflow-y: auto;
}
.home-wrapper {
width: 100%;
height: 92vh;
width: 100vw;
height: 200vw;
background-image: url('../assets/images/home-bg.webp');
background-size: cover;
background-repeat: no-repeat;