123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <template name="scrollTop">
- <!-- 商品详情价格判断 -->
- <view>
- <view class="scrollTop" :style="{bottom:bottom+'rpx'}">
- <view class="icon top" @click="onPageScrollTop" :class="isScrollTop ? 'show' : 'none'">
- <text class="iconfont icon-zhiding"></text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default{
- name:'scrollTop',
- props:{
- bottom:{
- type:Number,
- default:100
- },
- isScrollTop:{
- type:Boolean,
- default:false
- },
- hideContact:{
- type:Boolean,
- default:false
- }
- },
- data() {
- return{
- isPhone:false,
- telPhone:'0755-22907771',
- mobilePhone:'15338851365'
- }
- },
- created() {
-
- },
- methods:{
- onPageScrollTop(){
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 600
- });
- },
- handleContact(e){
- console.log(e.detail.path)
- console.log(e.detail.query)
- },
- },
- }
- </script>
- <style lang="scss">
- .scrollTop{
- width: 80rpx;
- height: 80rpx;
- position: fixed;
- right: 20rpx;
- z-index: 999;
- .icon{
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- float: left;
- margin: 10rpx 0;
- line-height: 80rpx;
- text-align: center;
- .contact-btn{
- width: 80rpx;
- height: 80rpx;
- background-color: rgba(0,0,0,0);
- line-height: 80rpx;
- .iconfont{
- font-size: $font-size-44;
- color: #FFFFFF;
- }
- }
- &.top{
- background-color: rgba(25, 25, 25, 0.3);
- &.show{
- opacity: 1;
- }
- &.none{
- opacity: 0;
- }
- }
- .iconfont{
- font-size: $font-size-26;
- color: #FFFFFF;
- }
- }
- }
- </style>
|