CustomerService.vue 648 B

1234567891011121314151617181920212223242526272829
  1. <script setup></script>
  2. <template>
  3. <button open-type="contact" session-from class="contact">
  4. <image class="contact-img"></image>
  5. </button>
  6. </template>
  7. <style lang="scss" scoped>
  8. @import "@/uni.scss";
  9. .contact {
  10. color: $uni-primary;
  11. font-size: 28rpx;
  12. background: transparent;
  13. padding: 0;
  14. margin: 0;
  15. &::after {
  16. border: 0; // 或者 border: none;
  17. }
  18. .contact-img {
  19. background: url("https://openwork-oss.oss-cn-shenzhen.aliyuncs.com/uploads/question/2025/05/jWjoCzJjk3DqjcGpHoJXYAUU5MXykAyWjF2UGgGO.png")
  20. no-repeat center center;
  21. background-size: cover;
  22. width: 144rpx;
  23. height: 150rpx;
  24. }
  25. }
  26. </style>