计算机网络/计算机科学与应用/系统/运维/开发

微信小程序 悬浮在线客服

1、wxml

   <!-- 悬浮客服 -->
   <view>
      <image src="../../images/kf.png" class="img-kf"></image>
      <image src="../../images/dh.png" class="img-dh" bindtap="calling"></image>
   </view>

2、js

   calling:function(){
         wx.makePhoneCall({
           phoneNumber: '10086',
         })
      },

3、wxss

  /* 客服 */
  .img-kf{
    height:32px;
    width:32px;
    position: fixed;
    bottom: 220rpx;
    right:30rpx;
    opacity: 0.7;
  }
  .img-dh{
    height:32px;
    width:32px;
    position: fixed; 
    bottom: 130rpx; 
    right: 30rpx; 
    opacity: 0.7
  }

image.png

所谓坚持,就是从种子种下到开花结果需要等待的时间。

评论

image

58 2024-08-14 08:08:22

源码 https://gitee.com/clouddreamteam_admin/cloud-dream/blob/master/pages/ad/index.js

回复 删除

^