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
| <template>
| <view class="slidetop-icon" @tap="gotop()">
| <view class="iconfont"></view>
| </view>
| </template>
|
| <script>
| export default{
| methods:{
| gotop(){
| this.$emit('toTop')
| }
| }
| }
| </script>
|
| <style lang="scss">
| .slidetop-icon{
| width: 90rpx;
| height: 90rpx;
| position: fixed;
| right: 32rpx;
| bottom: 120rpx;
| z-index: 200;
| color: #000000;
| font-size: 80rpx;
| opacity: 0.5;
| }
| </style>
|
|