dt_service.vue 608 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <button
  3. class="customer-service"
  4. open-type="contact"
  5. session-from="weapp">
  6. <image class="customer-service-icon" src="https://szsq.nxzhsq.cn/community/miniofile/image/service.png" mode="widthFix"></image>
  7. </button>
  8. </template>
  9. <script>
  10. export default {
  11. data(){
  12. return {}
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. // 客服按钮
  18. .customer-service{
  19. position: fixed;
  20. bottom: 60upx;
  21. right: 40upx;
  22. background-color:transparent;
  23. border:0;
  24. .customer-service-icon{
  25. width:80upx;
  26. height:80upx;
  27. border-radius:50%;
  28. background-color:$base;
  29. }
  30. }
  31. </style>