no message

This commit is contained in:
A1300399510
2024-01-09 15:11:03 +08:00
parent 9d07e02de6
commit 52f8709125
54 changed files with 499 additions and 469 deletions

View File

@@ -18,6 +18,10 @@
</template>
</div>
<div class="in-end" v-if="page == 0 && list.length > 0">- 到底了 -</div>
<div class="returnTop right-fixed" style="bottom: 18px;">
<img src="@/assets/img/returnTop-icon.png" style="width: 24px; height: 24px;" />
</div>
</template>
<script setup>
@@ -210,4 +214,22 @@ try {
text-align: center;
margin-bottom: 88px;
}
.returnTop {
}
.right-fixed {
position: fixed;
right: calc((100vw - 1200px) / 2 - 75px);
width: 50px;
height: 50px;
background-color: #323232;
bottom: 85px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
z-index: 10;
cursor: pointer;
}
</style>