下载页面优化

This commit is contained in:
GaoHao 2025-02-06 09:34:02 +08:00
parent be21975449
commit 3b1c7ea31f
2 changed files with 11 additions and 43 deletions

View File

@ -1,6 +1,6 @@
//打包时修改env的值即可
const env='production' //test , production,local
const env='test' //test , production,local
export const encryptKey='1234567890123456' // http数据加解密的key

View File

@ -4,9 +4,9 @@
<view class="content">
<image class="logo" src="/static/download/appLogo.png"></image>
<view style="font-size: 40rpx;margin-top: 22rpx;color: #FFFFFF;font-weight: bold;">斯耀短剧APP</view>
<view style="font-size: 40rpx;margin-top: 22rpx;color: #FFFFFF;font-weight: bold;">{{data.confirmBtn}}</view>
<view style="font-size: 28rpx;margin-top: 16rpx;color: #FFFFFF;font-weight: bold;">海量电子榨菜 免费又过瘾</view>
<button class="confirm-btn" @click="download">{{data.confirmBtn}}</button>
<button class="confirm-btn" @click="download">点击下载{{data.confirmBtn}}</button>
</view>
@ -32,7 +32,7 @@
// #ifdef H5
let u = window.navigator.userAgent;
if ( uni.getSystemInfoSync().platform == 'ios') {
data.confirmBtn = "跳转网页版首页"
data.confirmBtn = "顺享短剧APP"
}
if ( u.toLowerCase().indexOf('micromessenger') !== -1) {
data.isWeixin = true
@ -45,54 +45,22 @@
console.log(uni.getSystemInfoSync().platform == 'android')
if (uni.getSystemInfoSync().platform == 'android') {
commonType(49).then(res => {
console.log(res)
if (res && res.value) {
// #ifndef H5
plus.runtime.openURL(res.value, function(res) {
});
plus.runtime.openURL(res.value, function(res) {});
// #endif
// #ifdef H5
uni.setClipboardData({
data: res.value,
success: r => {
// this.$queue.showToast('');
uni.showToast({
title: '邀请码复制成功',
icon: 'none',
});
}
});
window.location.href = res.value;
// #endif
}
});
} else {
commonType(50).then(res => {
if (res && res.value) {
// #ifndef H5
plus.runtime.openURL(res.value, function(res) {
});
// #endif
// #ifdef H5
uni.setClipboardData({
data: res.value,
success: r => {
uni.showToast({
title: '邀请码复制成功',
icon: 'none',
});
}
});
uni.switchTab({
url: '/pages/index/index'
})
// window.location.href = res.data.value;
// #endif
}
});
// #ifndef H5
plus.runtime.openURL('https://apps.apple.com/cn/app/%E9%A1%BA%E4%BA%AB%E7%9F%AD%E5%89%A7/id6740074541', function(res) {});
// #endif
// #ifdef H5
window.location.href = 'https://apps.apple.com/cn/app/%E9%A1%BA%E4%BA%AB%E7%9F%AD%E5%89%A7/id6740074541';
// #endif
}
}
</script>