Commit 6695aa53 authored by caimeng's avatar caimeng

1.0.7 生产提包

parent cfe6acc9
...@@ -207,5 +207,11 @@ ...@@ -207,5 +207,11 @@
"optimization" : { "optimization" : {
"subPackages" : true "subPackages" : true
}, },
"runmode" : "liberate" "runmode" : "liberate",
"channel_list" : [
{
"id" : "honor",
"name" : "荣耀应用市场"
}
]
} }
...@@ -30,6 +30,22 @@ export default { ...@@ -30,6 +30,22 @@ export default {
this.init() 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: { methods: {
init() { init() {
try { try {
......
...@@ -25,14 +25,9 @@ ...@@ -25,14 +25,9 @@
}, },
methods: { methods: {
// 参考链接:https://blog.csdn.net/cscj2010/article/details/128236662
goIndex(item){ goIndex(item){
const parmas={ plus.runtime.openWeb(item.protocolUrl)
name:item.protocolName,
url:item.protocolUrl
}
uni.navigateTo({
url: '/subPackage/webview/webview?mydata=' + encodeURIComponent(JSON.stringify(parmas))
})
} }
}, },
onShow(){ onShow(){
......
...@@ -19,7 +19,7 @@ export const convertPromise = function (FnName, params = {}) { ...@@ -19,7 +19,7 @@ export const convertPromise = function (FnName, params = {}) {
// 初始化请求头的device参数信息 // 初始化请求头的device参数信息
export const initHeaderDevice = function () { export const initHeaderDevice = function () {
let modelApp=''; let modelApp = '';
// 手机型号 // 手机型号
if (uni.getStorageSync('m-agreement')) { if (uni.getStorageSync('m-agreement')) {
...@@ -30,23 +30,25 @@ export const initHeaderDevice = function () { ...@@ -30,23 +30,25 @@ export const initHeaderDevice = function () {
}) })
} }
let channel = plus && plus.runtime.channel && plus.runtime.channel;
// 获取版本号 // 获取版本号
let AppVersion = uni.getStorageSync('m-header-version'); let AppVersion = uni.getStorageSync('m-header-version');
const common = { const common = {
appName: 'DDH', appName: 'DDH',
appSourceId: modelApp, appSourceId: modelApp,
token: "c695fa285b9dc46a", // 设备令牌(device_token) 设备udid token: "", // 设备令牌(device_token) 设备udid
idfa: "", // IOS设备则为:IDFA 广告标识 idfa: "", // IOS设备则为:IDFA 广告标识
imei: "", //安卓设备为:imei imei: "", //安卓设备为:imei
mac: "", // mac mac: "", // mac
wifiMac: "", // wifimac wifiMac: "", // wifimac
clientIp: "", clientIp: "",
carrierOperator: 'OperatorName', //运营商 carrierOperator: '', //运营商
pushType: "1", //设备push接入类型(1. 小米PUSH,2. 极光PUSH) pushType: "1", //设备push接入类型(1. 小米PUSH,2. 极光PUSH)
electricQuantity: "", //电量 electricQuantity: "", //电量
totalStorage: "", //存储总空间 totalStorage: "", //存储总空间
availableStorage: "", //可用存储空间 availableStorage: "", //可用存储空间
channel: channel ? channel : '',
token: new Date().getTime(), token: new Date().getTime(),
device: plus.os.name, device: plus.os.name,
appVersion: AppVersion, appVersion: AppVersion,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment