hagerLoadMore.vue
1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!--
* @Date: 2024-09-29 10:31:01
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-11-05 09:43:08
* @FilePath: /hager/src/components/hagerLoadMore.vue
* @Description: 文件描述
-->
<template>
<div class="hager-load-more">
<div class="get-more no-select">
<div class="btn">加载更多</div>
</div>
</div>
</template>
<script>
import mixin from 'common/mixin';
export default {
mixins: [mixin.init],
data () {
return {
}
},
mounted () {
},
methods: {
}
}
</script>
<style lang="less" scoped>
.hager-load-more {
.get-more {
display: flex;
justify-content: center;
.btn {
background-color: #F56400;
color: #fff;
padding: 1rem 2rem;
width: 5rem;
margin-bottom: 2rem;
transition: background-color .25s ease-in-out;
text-align: center;
&:hover {
background-color: #ff8f33;
cursor: pointer;
}
}
}
}
</style>