first commit
This commit is contained in:
33
src/subPackages/personalCenter-sub/feedback/feedback.vue
Normal file
33
src/subPackages/personalCenter-sub/feedback/feedback.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user