From ca1b3e6e1e626d1ff54258b9f4e785057bbe5ab6 Mon Sep 17 00:00:00 2001
From: lin <1005713861@163.com>
Date: Wed, 15 Jul 2026 15:30:37 +0800
Subject: [PATCH] UI:齐享购IOS,1.首页搜索调整;2.行权接口参数调整
---
App.vue | 39 +++++++++++++++++++++++++--------------
1 files changed, 25 insertions(+), 14 deletions(-)
diff --git a/App.vue b/App.vue
index df3e9ab..0793c56 100644
--- a/App.vue
+++ b/App.vue
@@ -35,10 +35,10 @@
url: '/pages/login/login'
})
return false
-
+
}
uni.setStorageSync('Config', JSON.stringify(res.data))
-
+
// #ifdef APP-PLUS
//机型
let platform = uni.getSystemInfoSync().platform.toLocaleLowerCase()
@@ -58,18 +58,29 @@
updateFlag = !updateFlag
updesc = res.data.android.desc
}
- if (downUrl && updateFlag) {
- uni.showModal({
- showCancel: false,
- confirmText: '立即更新',
- title: '温馨提示!',
- content: updesc || '有最新版本,请更新APP!',
- success: res => {
- if (res.confirm) {
- plus.runtime.openURL(downUrl)
- }
- }
- })
+ if (updateFlag) {
+ // uni.showModal({
+ // showCancel: false,
+ // confirmText: '立即更新',
+ // title: '温馨提示!',
+ // content: updesc || '有最新版本,请更新APP!',
+ // success: res => {
+ // if (res.confirm) {
+ // plus.runtime.openURL(downUrl)
+ // }
+ // }
+ // })
+ uni.showModal({
+ showCancel: false,
+ confirmText: '确定',
+ title: '版本更新提示!',
+ content: updesc,
+ success: res => {
+ if (res.confirm) {
+
+ }
+ }
+ })
}
})
// #endif
--
Gitblit v1.9.3