Files
LSM_OIL_SITE_zhongping/components/service-hotline.vue
2023-04-26 14:03:20 +08:00

47 lines
1.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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="round text-center">
<!-- <button class="cu-btn oil-main-btn-color" open-type="contact" @contact="onContact"> -->
<!-- <text class="text-grey text-sm">打开会话</text> -->
<!-- </button> -->
<view class="cu-btn round bg-main-oil" @click="callHotline">
<text class="cuIcon-servicefill padding-right-xs"></text>
联系客服
</view>
</view>
<view class="color-999 text-center padding" @tap="callHotline">
全国统一客服/投诉热线
<text class="text-red">
4008-56-5355
</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
// key: value
}
},
methods: {
callHotline() {
uni.makePhoneCall({
phoneNumber: '4008-56-5355'
})
}
},
}
</script>
<style>
</style>