| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <button
- class="customer-service"
- open-type="contact"
- session-from="weapp">
- <image class="customer-service-icon" src="https://szsq.nxzhsq.cn/community/miniofile/image/service.png"
- mode="widthFix"></image>
- </button>
- </template>
- <script>
- export default {
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- // 客服按钮
- .customer-service {
- position: fixed;
- bottom: 60 upx;
- right: 40 upx;
- background-color: transparent;
- border: 0;
- .customer-service-icon {
- width: 80 upx;
- height: 80 upx;
- border-radius: 50%;
- background-color: $base;
- }
- }
- </style>
|