1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view @click="goback" class="top" :class="bottomtop==1?'':'activebottom' ">
- <img class="imgTop" src="/static/back_top.png" />
- </view>
- </template>
- <script>
- export default {
- props: {
- isTop: {
- default: false,
- type: Boolean
- },
- bottomtop: {
- default: 1,
- }
- },
- methods: {
- goback() {
- this.$emit('getop')
- },
- }
- }
- </script>
- <style>
- .top {
- width: 80upx;
- height: 80upx;
- border-radius: 50%;
- background-color: #fff;
- border: 1px solid #ccc;
- position: fixed;
- right: 32upx;
- bottom: 15upx;
- background-color: transparent;
- }
- .activebottom {
- width: 80upx;
- height: 80upx;
- border-radius: 50%;
- background-color: #fff;
- border: 1px solid #ccc;
- position: fixed;
- right: 32upx;
- bottom: 150upx;
- background-color: transparent;
- }
- .imgTop {
- width: 100%;
- height: 100%;
- }
- </style>
|