Files
dvcp_v2_wxcp_app/components/AiPhone.vue

31 lines
516 B
Vue
Raw Normal View History

2022-06-01 18:22:19 +08:00
<template>
<section class="AiPhone">
<img :src="$cdn + 'common/phone.png'" alt="" @click="callPhone(phone)" class="phone-icon" v-if="phone"/>
</section>
</template>
<script>
export default {
name: "AiPhone",
props: {
phone: {default: ""}
},
methods: {
callPhone(phoneNumber) {
uni.makePhoneCall({phoneNumber})
}
}
}
</script>
<style lang="scss" scoped>
.AiPhone {
.phone-icon {
width: 40px;
height: 40px;
vertical-align: sub;
margin-left: 16px;
}
}
</style>