Commit 6695aa53 authored by caimeng's avatar caimeng

1.0.7 生产提包

parent cfe6acc9
......@@ -207,5 +207,11 @@
"optimization" : {
"subPackages" : true
},
"runmode" : "liberate"
"runmode" : "liberate",
"channel_list" : [
{
"id" : "honor",
"name" : "荣耀应用市场"
}
]
}
......@@ -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 {
......
......@@ -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(){
......
......@@ -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,
......
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