Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
uni-app-ddh-shop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhanhai
uni-app-ddh-shop
Commits
5ab29ebb
Commit
5ab29ebb
authored
Mar 25, 2025
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
暂存1
parent
96bbd519
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
103 additions
and
82 deletions
+103
-82
App.vue
App.vue
+102
-70
header.js
utils/header.js
+1
-8
request.js
utils/request.js
+0
-4
No files found.
App.vue
View file @
5ab29ebb
<
script
>
import
{
loadVersion
,
loadDevice
,
loadLocation
,
loadNetwork
,
loadUuid
,
ininIndex
,
initIndexGoods
,
initH5Setting
,
initAPPSetting
}
from
'@/utils/index.js'
import
config
from
'@/config/api'
import
{
loadVersion
,
loadDevice
,
loadLocation
,
loadNetwork
,
loadUuid
,
ininIndex
,
initIndexGoods
,
initH5Setting
,
initAPPSetting
,
}
from
"@/utils/index.js"
;
import
config
from
"@/config/api"
;
export
default
{
globalData
:
{
WebUrl
:
config
[
'h5'
],
H5
:
null
,
APP
:
null
},
onLaunch
:
async
function
()
{
globalData
:
{
WebUrl
:
config
[
"h5"
],
H5
:
null
,
APP
:
null
,
},
onLaunch
:
async
function
()
{
// 是否是第一次启动
const
appStart
=
uni
.
getStorageSync
(
"appStart"
);
if
(
appStart
)
{
uni
.
switchTab
({
url
:
"/pages/index/index"
,
success
:
function
()
{
plus
.
navigator
.
closeSplashscreen
();
},
});
// 是否是第一次启动
const
appStart
=
uni
.
getStorageSync
(
'appStart'
)
if
(
appStart
)
{
uni
.
switchTab
({
url
:
"/pages/index/index"
,
success
:
function
()
{
plus
.
navigator
.
closeSplashscreen
()
}
})
// uni.navigateTo({
// url: "/subPackage/setting/setting",
// success: function () {
// plus.navigator.closeSplashscreen()
// }
// })
}
else
{
uni
.
redirectTo
({
url
:
"/pages/starPage/index"
,
success
:
function
()
{
plus
.
navigator
.
closeSplashscreen
();
},
});
}
// uni.navigateTo({
// url: "/subPackage/setting/setting",
// success: function () {
// plus.navigator.closeSplashscreen()
// }
// })
}
else
{
uni
.
redirectTo
({
url
:
"/pages/starPage/index"
,
success
:
function
()
{
plus
.
navigator
.
closeSplashscreen
()
}
})
}
// 强制竖屏
plus
.
screen
.
lockOrientation
(
"portrait-primary"
)
// 当前版本号
plus
.
runtime
.
getProperty
(
plus
.
runtime
.
appid
,
function
(
wgtinfo
)
{
let
versionNumber
if
(
wgtinfo
.
version
)
{
versionNumber
=
wgtinfo
.
version
;
}
else
{
versionNumber
=
plus
.
runtime
.
version
;
}
// 存储所有请求的头部信息
uni
.
setStorage
({
key
:
'm-header-version'
,
data
:
versionNumber
});
})
// 强制竖屏
plus
.
screen
.
lockOrientation
(
"portrait-primary"
);
const
platform
=
uni
.
getSystemInfoSync
()
if
(
uni
.
getStorageSync
(
'm-agreement'
)
&&
platform
.
osName
===
'ios'
)
{
loadNetwork
()
loadDevice
()
loadLocation
()
loadUuid
()
}
// 当前版本号
plus
.
runtime
.
getProperty
(
plus
.
runtime
.
appid
,
function
(
wgtinfo
)
{
let
versionNumber
;
if
(
wgtinfo
.
version
)
{
versionNumber
=
wgtinfo
.
version
;
}
else
{
versionNumber
=
plus
.
runtime
.
version
;
}
// 存储所有请求的头部信息
uni
.
setStorage
({
key
:
"m-header-version"
,
data
:
versionNumber
});
});
// 首页配置
await
ininIndex
()
await
initIndexGoods
()
const
platform
=
uni
.
getSystemInfoSync
();
if
(
uni
.
getStorageSync
(
"m-agreement"
)
&&
platform
.
osName
===
"ios"
)
{
loadNetwork
();
loadDevice
();
loadLocation
();
loadUuid
();
}
// APP配置和H5配置
await
initH5Setting
()
await
initAPPSetting
()
},
onShow
:
async
function
()
{
const
versionNumber
=
await
loadVersion
()
console
.
log
(
versionNumber
,
'versionNumber'
)
// 首页配置
await
ininIndex
();
await
initIndexGoods
();
},
/** 切换到后台 */
onHide
()
{
uni
.
setStorageSync
(
'canRefreshWeb'
,
'YES'
)
}
}
// APP配置和H5配置
await
initH5Setting
();
await
initAPPSetting
();
},
onShow
:
async
function
()
{
// IOS 打开之后,需要检查版本号
try
{
const
versionNumber
=
await
loadVersion
();
let
headerDevice
=
uni
.
getStorageSync
(
"m-header-device"
);
if
(
headerDevice
)
{
const
{
appVersion
}
=
JSON
.
parse
(
headerDevice
);
if
(
appVersion
*
1
!==
versionNumber
)
{
// 版本号不一致,需要更新
console
.
log
(
'版本号不一致,需要更新'
)
}
}
}
catch
(
error
)
{
console
.
log
(
error
,
"error"
);
}
},
/** 切换到后台 */
onHide
()
{
uni
.
setStorageSync
(
"canRefreshWeb"
,
"YES"
);
},
methods
:
{
async
checkVersion
()
{
const
versionNumber
=
await
loadVersion
();
let
headerDevice
=
uni
.
getStorageSync
(
"m-header-device"
);
if
(
headerDevice
)
{
const
{
appVersion
}
=
JSON
.
parse
(
headerDevice
);
console
.
log
(
appVersion
,
versionNumber
,
'appVersion,versionNumber'
);
if
(
appVersion
*
1
!==
versionNumber
*
1
)
{
console
.
log
(
'版本号不一致,需要更新'
)
}
}
}
}
};
</
script
>
<
style
>
...
...
utils/header.js
View file @
5ab29ebb
...
...
@@ -39,14 +39,7 @@ export const initHeaderDevice = function () {
appName
:
'DDH'
,
appSourceId
:
modelApp
,
appCode
:
8
,
// mac: "", // mac
// wifiMac: "", // wifimac
// clientIp: "",
// carrierOperator: '', //运营商
pushType
:
"1"
,
//设备push接入类型(1. 小米PUSH,2. 极光PUSH)
// electricQuantity: "", //电量
// totalStorage: "", //存储总空间
// availableStorage: "", //可用存储空间
pushType
:
"1"
,
channel
:
channel
?
channel
:
''
,
token
:
new
Date
().
getTime
(),
device
:
plus
.
os
.
name
,
...
...
utils/request.js
View file @
5ab29ebb
...
...
@@ -7,10 +7,6 @@ const request = async (url, type, data) => {
let
rd
if
(
headerDevice
)
{
// 获取版本号
let
AppVersion
=
uni
.
getStorageSync
(
'm-header-version'
);
AppVersion
=
AppVersion
===
'1.0.8'
?
AppVersion
:
'1.0.8'
;
const
device
=
Object
.
assign
({},
JSON
.
parse
(
headerDevice
))
device
.
appVersion
=
AppVersion
console
.
log
(
headerDevice
,
'设备头信息'
)
console
.
log
(
'+++++++++++++++++++++++++从缓存拿数据'
)
rd
=
encodeURIComponent
(
headerDevice
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment