网格调整完毕

This commit is contained in:
aixianling
2022-06-01 18:22:19 +08:00
parent 18bffaf517
commit 0bda297fda
82 changed files with 10733 additions and 952 deletions

View File

@@ -0,0 +1,30 @@
<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>