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
6695aa53
Commit
6695aa53
authored
Nov 28, 2024
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.0.7 生产提包
parent
cfe6acc9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
13 deletions
+32
-13
manifest.json
manifest.json
+7
-1
index.vue
pages/starPage/index.vue
+17
-1
prolist.vue
subPackage/prolist/prolist.vue
+2
-7
header.js
utils/header.js
+6
-4
No files found.
manifest.json
View file @
6695aa53
...
...
@@ -207,5 +207,11 @@
"optimization"
:
{
"subPackages"
:
true
},
"runmode"
:
"liberate"
"runmode"
:
"liberate"
,
"channel_list"
:
[
{
"id"
:
"honor"
,
"name"
:
"荣耀应用市场"
}
]
}
pages/starPage/index.vue
View file @
6695aa53
...
...
@@ -8,7 +8,7 @@
import
{
ininIndex
,
initIndexGoods
,
initH5Setting
,
initAPPSetting
}
from
'@/utils/index'
export
default
{
async
onLoad
()
{
// 监听网络变化,如果
uni
.
onNetworkStatusChange
(
async
(
res
)
=>
{
if
(
res
.
isConnected
)
{
...
...
@@ -30,6 +30,22 @@ export default {
this
.
init
()
},
//设置页面全屏
onShow
()
{
// #ifdef APP-PLUS
plus
.
navigator
.
setFullscreen
(
true
);
//隐藏手机顶部状态栏
plus
.
navigator
.
hideSystemNavigation
();
//隐藏手机底部导航按键
// #endif
},
//监听页面卸载事件 如果不加这句,会导致跳转到别的页面后也是全屏
onUnload
()
{
// #ifdef APP-PLUS
plus
.
navigator
.
setFullscreen
(
false
);
//显示手机顶部状态栏
plus
.
navigator
.
showSystemNavigation
();
//显示手机底部导航按键
// #endif
},
methods
:
{
init
()
{
try
{
...
...
subPackage/prolist/prolist.vue
View file @
6695aa53
...
...
@@ -25,14 +25,9 @@
},
methods
:
{
// 参考链接:https://blog.csdn.net/cscj2010/article/details/128236662
goIndex
(
item
){
const
parmas
=
{
name
:
item
.
protocolName
,
url
:
item
.
protocolUrl
}
uni
.
navigateTo
({
url
:
'/subPackage/webview/webview?mydata='
+
encodeURIComponent
(
JSON
.
stringify
(
parmas
))
})
plus
.
runtime
.
openWeb
(
item
.
protocolUrl
)
}
},
onShow
(){
...
...
utils/header.js
View file @
6695aa53
...
...
@@ -19,7 +19,7 @@ export const convertPromise = function (FnName, params = {}) {
// 初始化请求头的device参数信息
export
const
initHeaderDevice
=
function
()
{
let
modelApp
=
''
;
let
modelApp
=
''
;
// 手机型号
if
(
uni
.
getStorageSync
(
'm-agreement'
))
{
...
...
@@ -30,23 +30,25 @@ export const initHeaderDevice = function () {
})
}
let
channel
=
plus
&&
plus
.
runtime
.
channel
&&
plus
.
runtime
.
channel
;
// 获取版本号
let
AppVersion
=
uni
.
getStorageSync
(
'm-header-version'
);
const
common
=
{
appName
:
'DDH'
,
appSourceId
:
modelApp
,
token
:
"
c695fa285b9dc46a
"
,
// 设备令牌(device_token) 设备udid
token
:
""
,
// 设备令牌(device_token) 设备udid
idfa
:
""
,
// IOS设备则为:IDFA 广告标识
imei
:
""
,
//安卓设备为:imei
mac
:
""
,
// mac
wifiMac
:
""
,
// wifimac
clientIp
:
""
,
carrierOperator
:
'
OperatorName
'
,
//运营商
carrierOperator
:
''
,
//运营商
pushType
:
"1"
,
//设备push接入类型(1. 小米PUSH,2. 极光PUSH)
electricQuantity
:
""
,
//电量
totalStorage
:
""
,
//存储总空间
availableStorage
:
""
,
//可用存储空间
channel
:
channel
?
channel
:
''
,
token
:
new
Date
().
getTime
(),
device
:
plus
.
os
.
name
,
appVersion
:
AppVersion
,
...
...
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