Files
jxc4-bluetooth-printer/src/subPackages/personalCenter-sub/feedback/feedback.vue
2025-11-28 10:35:11 +08:00

33 lines
659 B
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>
<p>尊敬的用户您好如果您在使用小程序或软件中发现问题欢迎与我们联系</p>
<view class="send-btn" @tap="phone">
<view>拨打电话</view>
</view>
</view>
</template>
<script>
export default {
methods: {
/**
* 电话问题反馈
*/
phone() {
//#ifdef MP-WEIXIN
uni.makePhoneCall({
phoneNumber: '18048531223'
});
//#endif
//#ifdef APP-PLUS
plus.device.dial('18048531223', true);
//#endif
}
}
}
</script>
<style lang="scss">
@import "./feedback.scss"
</style>