no message
This commit is contained in:
parent
4358dcc52b
commit
4ec12c6d94
@ -509,7 +509,7 @@
|
||||
}
|
||||
.data .item .operate .circle {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
z-index: 6;
|
||||
cursor: pointer;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
@ -539,6 +539,7 @@
|
||||
overflow: hidden;
|
||||
opacity: 0;
|
||||
height: 0;
|
||||
z-index: 4;
|
||||
}
|
||||
.data .item .operate .select.show {
|
||||
height: 211px;
|
||||
|
@ -565,7 +565,8 @@
|
||||
position: relative;
|
||||
.circle {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
// z-index: 1;
|
||||
z-index: 6;
|
||||
cursor: pointer;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
@ -595,6 +596,7 @@
|
||||
overflow: hidden;
|
||||
opacity: 0;
|
||||
height: 0;
|
||||
z-index: 4;
|
||||
&.show {
|
||||
height: 211px;
|
||||
opacity: 1;
|
||||
|
48
html/search.html
Normal file
48
html/search.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user