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
e9ddb18d
Commit
e9ddb18d
authored
Mar 20, 2025
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
4ea05d26
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
21 deletions
+24
-21
App.vue
App.vue
+9
-9
request.js
utils/request.js
+15
-12
No files found.
App.vue
View file @
e9ddb18d
...
...
@@ -11,19 +11,19 @@ export default {
const
appStart
=
uni
.
getStorageSync
(
'appStart'
)
if
(
appStart
)
{
// uni.switchTab({
// url: "/pages/index/index",
// success: function () {
// plus.navigator.closeSplashscreen()
// }
// })
uni
.
navigateTo
({
url
:
"/subPackage/setting/setting"
,
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
({
...
...
utils/request.js
View file @
e9ddb18d
...
...
@@ -9,13 +9,13 @@ const request = async (url, type, data) => {
// 获取版本号
let
AppVersion
=
uni
.
getStorageSync
(
'm-header-version'
);
AppVersion
=
AppVersion
===
'1.0.8'
?
AppVersion
:
'1.0.8'
;
const
device
=
Object
.
assign
({},
JSON
.
parse
(
headerDevice
))
const
device
=
Object
.
assign
({},
JSON
.
parse
(
headerDevice
))
device
.
appVersion
=
AppVersion
console
.
log
(
device
.
appVersion
,
'设备头信息'
)
console
.
log
(
headerDevice
,
'设备头信息'
)
console
.
log
(
'+++++++++++++++++++++++++从缓存拿数据'
)
rd
=
encodeURIComponent
(
headerDevice
)
}
else
{
console
.
log
(
initHeaderDevice
(),
'=========================不从缓存拿数据'
)
console
.
log
(
initHeaderDevice
(),
'=========================不从缓存拿数据'
)
rd
=
JSON
.
stringify
(
initHeaderDevice
())
}
...
...
@@ -24,8 +24,17 @@ const request = async (url, type, data) => {
const
token
=
uni
.
getStorageSync
(
'token'
)
const
tokenFinance
=
uni
.
getStorageSync
(
'tokenFinance'
)
const
$data
=
Object
.
assign
({},
data
);
const
headers
=
{
Accept
:
"application/json;charset=UTF-8"
,
"Content-Type"
:
"application/json;charset=UTF-8"
,
device
:
rd
,
Authorization
:
tokenFinance
,
//贷超
Author
:
token
,
//多典花
}
console
.
log
(
baseUrl
+
url
,
'请求地址'
);
console
.
log
(
headers
,
'请求头'
);
console
.
log
(
baseUrl
+
url
,
'请求地址'
);
uni
.
request
({
url
:
baseUrl
+
url
,
...
...
@@ -33,14 +42,8 @@ const request = async (url, type, data) => {
data
:
{
...
data
},
timeout
:
10000
,
header
:
{
Accept
:
"application/json;charset=UTF-8"
,
"Content-Type"
:
"application/json;charset=UTF-8"
,
device
:
rd
,
Authorization
:
tokenFinance
,
//贷超
Author
:
token
,
//多典花
},
timeout
:
10000
,
header
:
headers
,
success
:
(
res
)
=>
{
// #ifdef APP
...
...
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