33 lines
659 B
Vue
33 lines
659 B
Vue
<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> |