dt_service.vue 783 B

12345678910111213141516171819202122232425262728293031323334
  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"
  7. mode="widthFix"></image>
  8. </button>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {}
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. // 客服按钮
  19. .customer-service {
  20. position: fixed;
  21. bottom: 60 upx;
  22. right: 40 upx;
  23. background-color: transparent;
  24. border: 0;
  25. .customer-service-icon {
  26. width: 80 upx;
  27. height: 80 upx;
  28. border-radius: 50%;
  29. background-color: $base;
  30. }
  31. }
  32. </style>