|
|
@@ -46,7 +46,7 @@
|
|
|
<view class="usermain-btn">立即体验</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view v-if="show==1||true" @click="shutDown" class="downloadbox" style="position: fixed;top: 0;left: 0;width: 100%;height: 100vh;z-index: 1000;background: rgba(000,000,000,0.6);">
|
|
|
+ <view v-if="show==1" @click="shutDown" class="downloadbox" style="position: fixed;top: 0;left: 0;width: 100%;height: 100vh;z-index: 1000;background: rgba(000,000,000,0.6);">
|
|
|
<image src="../../static/images/tip.png" style="position: fixed;top:30px;right: 30px;width: 80%;" mode="widthFix"/>
|
|
|
</view>
|
|
|
|
|
|
@@ -103,31 +103,31 @@ export default {
|
|
|
var u = navigator.userAgent;
|
|
|
if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) { //安卓手机
|
|
|
// 小米应用商店
|
|
|
- if (ua.match(/mi\s/i) == 'mi ') {
|
|
|
+ if (u.match(/mi\s/i) == 'mi ') {
|
|
|
window.location.href = 'https://app.mi.com/details?id=uni.app.UNI0B0096D';
|
|
|
|
|
|
// vivo应用商店
|
|
|
- } else if (ua.match(/vivo/i) == 'vivo') {
|
|
|
+ } else if (u.match(/vivo/i) == 'vivo') {
|
|
|
window.location.href = 'https://h5coml.vivo.com.cn/h5coml/appdetail_h5/browser_v2/index.html?appId=3629014';
|
|
|
return this.$queue.showToast('vivo系统请在应用商店搜索“亿职赞”')
|
|
|
// OPPO应用商店
|
|
|
- } else if (ua.match(/oppo/i) == 'oppo') {
|
|
|
+ } else if (u.match(/oppo/i) == 'oppo') {
|
|
|
window.location.href = 'https://api.appstore.oppomobile.com/app/detail?packageName=uni.app.UNI0B0096D';
|
|
|
|
|
|
// 荣耀应用商店
|
|
|
- } else if (ua.match(/honor/i) == 'honor') {
|
|
|
+ } else if (u.match(/honor/i) == 'honor') {
|
|
|
window.location.href = 'https://appgallery.huawei.com/app/C116155907'; // 替换为实际应用ID
|
|
|
|
|
|
// 华为应用市场
|
|
|
- } else if (ua.match(/huawei/i) == 'huawei') {
|
|
|
+ } else if (u.match(/huawei/i) == 'huawei') {
|
|
|
window.location.href = 'https://appgallery.huawei.com/app/C116155907'; // 替换为实际应用ID
|
|
|
|
|
|
// 三星应用商店
|
|
|
- } else if (ua.match(/samsung/i) == 'samsung') {
|
|
|
+ } else if (u.match(/samsung/i) == 'samsung') {
|
|
|
window.location.href = 'https://galaxystore.samsung.com/detail/uni.app.UNI0B0096D';
|
|
|
|
|
|
// 魅族应用商店
|
|
|
- } else if (ua.match(/meizu/i) == 'meizu') {
|
|
|
+ } else if (u.match(/meizu/i) == 'meizu') {
|
|
|
window.location.href = 'https://app.meizu.com/apps/uni.app.UNI0B0096D';
|
|
|
|
|
|
|