feat: 兼容处理

This commit is contained in:
2026-05-10 13:01:55 +08:00
parent bbca2d14c9
commit 85a61d5bbf
4 changed files with 26 additions and 3 deletions

View File

@@ -31,7 +31,7 @@
import { ref } from "vue";
import { onShow } from "@dcloudio/uni-app";
const showPrivacy = ref(true);
const showPrivacy = ref(false);
const privacyContractName = ref("隐私保护指引");
onShow(() => {
@@ -41,9 +41,9 @@ onShow(() => {
wx.getPrivacySetting({
success: (res) => {
console.log("cj隐私配置", res);
if (res.errMsg == "getPrivacySetting:ok" && res.needAuthorization) {
if (res.errMsg == "getPrivacySetting:ok") {
privacyContractName.value = res.privacyContractName;
showPrivacy.value = res.needAuthorization;
showPrivacy.value = !!res.needAuthorization;
}
},
});
@@ -54,6 +54,7 @@ onShow(() => {
uni.getPrivacySetting({
success: (res) => {
console.log(res);
showPrivacy.value = !!res.needAuthorization;
},
});
// #endif

View File

@@ -298,6 +298,7 @@ const handlePayClick = ThrottleUtils.createThrottle(async (goodsData) => {
// 在发起微信支付前关闭 loading避免与原生支付 UI 冲突)
uni.hideLoading();
// #ifdef MP-WEIXIN
// 调用微信支付
uni.requestPayment({
provider: "wxpay",
@@ -322,6 +323,15 @@ const handlePayClick = ThrottleUtils.createThrottle(async (goodsData) => {
uni.showToast({ title: "支付失败,请重试", icon: "none" });
},
});
// #endif
// #ifdef APP-PLUS
uni.showModal({
title: "提示",
content: "支付功能开发中",
showCancel: false,
});
// #endif
}, 1000);
</script>

View File

@@ -111,6 +111,7 @@ const handleButtonClick = DebounceUtils.createDebounce(async (orderData) => {
// 在发起微信支付前关闭 loading避免与原生支付 UI 冲突)
uni.hideLoading();
// #ifdef MP-WEIXIN
// 调用微信支付
uni.requestPayment({
provider: "wxpay",
@@ -133,6 +134,15 @@ const handleButtonClick = DebounceUtils.createDebounce(async (orderData) => {
uni.showToast({ title: "支付失败,请重试", icon: "none" });
},
});
// #endif
// #ifdef APP-PLUS
uni.showModal({
title: "提示",
content: "支付功能开发中",
showCancel: false,
});
// #endif
}
} catch (error) {
console.error("操作失败:", error);

View File

@@ -1,4 +1,5 @@
export const updateManager = () => {
// #ifdef MP-WEIXIN || MP-TOUTIAO
const updateManager = uni.getUpdateManager();
// 当向小程序后台请求完新版本信息,会进行回调
@@ -22,4 +23,5 @@ export const updateManager = () => {
// 当新版本下载失败,会进行回调
updateManager.onUpdateFailed(() => {});
// #endif
};