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
5ea7feaf
Commit
5ea7feaf
authored
Dec 03, 2024
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
版本号写死,等服务端配合之后重新提1.0.8的版本
parent
18e45ab1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
20 deletions
+28
-20
manifest.json
manifest.json
+2
-2
header.js
utils/header.js
+23
-16
request.js
utils/request.js
+3
-2
No files found.
manifest.json
View file @
5ea7feaf
...
...
@@ -2,8 +2,8 @@
"name"
:
"多典花"
,
"appid"
:
"__UNI__DE04B13"
,
"description"
:
""
,
"versionName"
:
"1.0.
7
"
,
"versionCode"
:
10
7
,
"versionName"
:
"1.0.
8
"
,
"versionCode"
:
10
8
,
"transformPx"
:
false
,
/*
5
+App特有相关
*/
"app-plus"
:
{
...
...
utils/header.js
View file @
5ea7feaf
...
...
@@ -19,40 +19,45 @@ export const convertPromise = function (FnName, params = {}) {
// 初始化请求头的device参数信息
export
const
initHeaderDevice
=
function
()
{
let
modelApp
=
''
;
let
modelApp
=
''
,
systemInfo
=
{}
;
// 手机型号
if
(
uni
.
getStorageSync
(
'm-agreement'
))
{
if
(
uni
.
getStorageSync
(
'm-agreement'
)
||
plus
.
runtime
.
isAgreePrivacy
)
{
uni
.
getSystemInfo
({
success
:
function
(
res
)
{
modelApp
=
res
.
deviceBrand
systemInfo
=
res
}
})
}
let
channel
=
plus
&&
plus
.
runtime
.
channel
&&
plus
.
runtime
.
channel
;
const
{
system
=
''
,
screenHeight
=
''
,
screenWidth
=
''
,
platform
=
''
,
osVersion
=
''
,
osName
=
''
,
deviceBrand
=
''
}
=
systemInfo
// 获取版本号
let
AppVersion
=
uni
.
getStorageSync
(
'm-header-version'
);
// AppVersion = AppVersion === '1.0.7' ? AppVersion : '1.0.7
';
let
AppVersion
=
uni
.
getStorageSync
(
'm-header-version'
);
AppVersion
=
AppVersion
===
'1.0.8'
?
AppVersion
:
'1.0.8
'
;
const
common
=
{
appName
:
'DDH'
,
appSourceId
:
modelApp
,
token
:
""
,
// 设备令牌(device_token) 设备udid
idfa
:
""
,
// IOS设备则为:IDFA 广告标识
imei
:
""
,
//安卓设备为:imei
mac
:
""
,
// mac
wifiMac
:
""
,
// wifimac
clientIp
:
""
,
carrierOperator
:
''
,
//运营商
// mac: "", // mac
// wifiMac: "", // wifimac
// clientIp: "",
// carrierOperator: '', //运营商
pushType
:
"1"
,
//设备push接入类型(1. 小米PUSH,2. 极光PUSH)
electricQuantity
:
""
,
//电量
totalStorage
:
""
,
//存储总空间
availableStorage
:
""
,
//可用存储空间
//
electricQuantity: "", //电量
//
totalStorage: "", //存储总空间
//
availableStorage: "", //可用存储空间
channel
:
channel
?
channel
:
''
,
token
:
new
Date
().
getTime
(),
device
:
plus
.
os
.
name
,
appVersion
:
AppVersion
,
system
,
screenHeight
,
screenWidth
,
platform
,
osName
,
osVersion
,
deviceBrand
};
const
deviceInfo
=
uni
.
getStorageSync
(
'm-device-info'
)
...
...
@@ -60,7 +65,7 @@ export const initHeaderDevice = function () {
const
locationInfo
=
uni
.
getStorageSync
(
'm-location-info'
)
const
loadUuid
=
uni
.
getStorageSync
(
'm-load-udid'
)
let
device
=
{
...
common
};
let
device
=
{
...
common
}
if
(
deviceInfo
)
{
device
=
Object
.
assign
(
device
,
common
,
JSON
.
parse
(
deviceInfo
))
...
...
@@ -93,5 +98,7 @@ export const initHeaderDevice = function () {
return
headerDeviceInfo
}
console
.
log
(
device
,
'请求头信息'
)
return
device
}
utils/request.js
View file @
5ea7feaf
...
...
@@ -8,9 +8,10 @@ const request = async (url, type, data) => {
if
(
headerDevice
)
{
// 获取版本号
let
AppVersion
=
uni
.
getStorageSync
(
'm-header-version'
);
// AppVersion = AppVersion === '1.0.7' ? AppVersion : '1.0.7
';
AppVersion
=
AppVersion
===
'1.0.8'
?
AppVersion
:
'1.0.8
'
;
const
device
=
Object
.
assign
({},
JSON
.
parse
(
headerDevice
))
device
.
appVersion
=
AppVersion
console
.
log
(
device
,
'设备头信息'
)
rd
=
encodeURIComponent
(
headerDevice
)
}
else
{
rd
=
JSON
.
stringify
(
initHeaderDevice
())
...
...
@@ -41,7 +42,7 @@ const request = async (url, type, data) => {
console
.
log
(
'------------'
)
console
.
log
(
`
${
baseUrl
}${
url
}
`
,
'接口地址'
)
console
.
log
(
$data
,
'接口参数'
)
if
(
res
.
data
.
result
)
console
.
log
(
res
.
data
.
result
,
'返回内容'
)
if
(
res
.
data
&&
res
.
data
.
result
)
console
.
log
(
res
.
data
.
result
,
'返回内容'
)
else
console
.
log
(
res
.
data
,
'返回内容'
)
...
...
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