| 123456789101112131415161718192021222324252627282930313233 |
- <template>
- <button
- class="customer-service"
- open-type="contact"
- session-from="weapp">
- <image class="customer-service-icon" src="http://139.9.103.171:1888/img/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: #2f7ff5;
- // background-color:$dt-color-primary;
- }
- }
- </style>
|