no message

This commit is contained in:
A1300399510 2024-11-04 17:19:25 +08:00
parent 4358dcc52b
commit 4ec12c6d94
3 changed files with 53 additions and 2 deletions

View File

@ -509,7 +509,7 @@
} }
.data .item .operate .circle { .data .item .operate .circle {
position: relative; position: relative;
z-index: 1; z-index: 6;
cursor: pointer; cursor: pointer;
width: 28px; width: 28px;
height: 28px; height: 28px;
@ -539,6 +539,7 @@
overflow: hidden; overflow: hidden;
opacity: 0; opacity: 0;
height: 0; height: 0;
z-index: 4;
} }
.data .item .operate .select.show { .data .item .operate .select.show {
height: 211px; height: 211px;

View File

@ -565,7 +565,8 @@
position: relative; position: relative;
.circle { .circle {
position: relative; position: relative;
z-index: 1; // z-index: 1;
z-index: 6;
cursor: pointer; cursor: pointer;
width: 28px; width: 28px;
height: 28px; height: 28px;
@ -595,6 +596,7 @@
overflow: hidden; overflow: hidden;
opacity: 0; opacity: 0;
height: 0; height: 0;
z-index: 4;
&.show { &.show {
height: 211px; height: 211px;
opacity: 1; opacity: 1;

48
html/search.html Normal file
View File

@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="/css/common.css" />
<link rel="stylesheet" href="/css/index.css" />
<script src="/js/axios.min.js"></script>
<script src="/js/vue.global.js"></script>
<script src="/js/common.js"></script>
<script src="/js/base.js"></script>
<script src="/js/masonry.pkgd.min.js"></script>
<style>
[v-cloak] {
display: none;
}
</style>
</head>
<body>
<div id="app" class="main" v-cloak>
<!-- 底部 -->
<base-bottom ref="baseRef"></base-bottom>
</div>
<script>
const { createApp, ref, onMounted, nextTick, onUnmounted, computed } = Vue
const projectIndex = createApp({
setup() {
onMounted(() => {
window.addEventListener("scroll", handleScroll)
// init()
})
return {
}
},
})
projectIndex.component("base-bottom", base)
projectIndex.mount("#app")
</script>
</body>
</html>