first commit

This commit is contained in:
wtq
2025-11-28 10:35:11 +08:00
commit 9ed8a3de94
121 changed files with 30962 additions and 0 deletions

View 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>