You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
660 B
36 lines
660 B
<template> |
|
<!-- 客服热线 --> |
|
<view class=""> |
|
<view class="round text-center"> |
|
<button class="cu-btn round bg-main-oil" open-type='contact'> |
|
<text class="cuIcon-servicefill padding-right-xs"></text> |
|
联系在线客服</button> |
|
</view> |
|
<view class="color-999 text-center padding" @tap="callHotline"> |
|
全国统一客服/投诉热线: |
|
<text class="text-red"> |
|
4008-56-5166 |
|
</text> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
// key: value |
|
} |
|
}, |
|
methods: { |
|
callHotline() { |
|
uni.makePhoneCall({ |
|
phoneNumber: '4008-56-5166' |
|
}) |
|
} |
|
}, |
|
} |
|
</script> |
|
|
|
<style> |
|
</style>
|
|
|