| 1234567891011121314151617181920212223242526272829303132 |
- <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: 60upx;
- right: 40upx;
- background-color:transparent;
- border:0;
- .customer-service-icon{
- width:80upx;
- height:80upx;
- border-radius:50%;
- background-color:$base;
- }
- }
- </style>
|