要搞直接登录
This commit is contained in:
29
components/service-hotline.vue
Normal file
29
components/service-hotline.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<template>
|
||||
<!-- 客服热线 -->
|
||||
<view class="color-999 text-center padding" @tap="callHotline">
|
||||
全国统一客服/投诉热线:
|
||||
<text class="text-red">
|
||||
4008-56-5166
|
||||
</text>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default{
|
||||
data() {
|
||||
return {
|
||||
// key: value
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
callHotline() {
|
||||
uni.makePhoneCall({
|
||||
phoneNumber:'4008-56-5166'
|
||||
})
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user