1234567891011121314151617181920212223242526272829 |
- <script setup></script>
- <template>
- <button open-type="contact" session-from class="contact">
- <image class="contact-img"></image>
- </button>
- </template>
- <style lang="scss" scoped>
- @import "@/uni.scss";
- .contact {
- color: $uni-primary;
- font-size: 28rpx;
- background: transparent;
- padding: 0;
- margin: 0;
- &::after {
- border: 0; // 或者 border: none;
- }
- .contact-img {
- background: url("https://openwork-oss.oss-cn-shenzhen.aliyuncs.com/uploads/question/2025/05/jWjoCzJjk3DqjcGpHoJXYAUU5MXykAyWjF2UGgGO.png")
- no-repeat center center;
- background-size: cover;
- width: 144rpx;
- height: 150rpx;
- }
- }
- </style>
|