Commit 5ab29ebb authored by caimeng's avatar caimeng

暂存1

parent 96bbd519
<script> <script>
import {loadVersion, loadDevice, loadLocation, loadNetwork, loadUuid, ininIndex, initIndexGoods, initH5Setting, initAPPSetting } from '@/utils/index.js' import {
import config from '@/config/api' loadVersion,
loadDevice,
loadLocation,
loadNetwork,
loadUuid,
ininIndex,
initIndexGoods,
initH5Setting,
initAPPSetting,
} from "@/utils/index.js";
import config from "@/config/api";
export default { export default {
globalData: { globalData: {
WebUrl: config['h5'], WebUrl: config["h5"],
H5: null, H5: null,
APP: null APP: null,
}, },
onLaunch: async function () { onLaunch: async function () {
// 是否是第一次启动 // 是否是第一次启动
const appStart = uni.getStorageSync('appStart') const appStart = uni.getStorageSync("appStart");
if (appStart) { if (appStart) {
uni.switchTab({ uni.switchTab({
url: "/pages/index/index", url: "/pages/index/index",
success: function () { success: function () {
plus.navigator.closeSplashscreen() plus.navigator.closeSplashscreen();
} },
}) });
// uni.navigateTo({ // uni.navigateTo({
// url: "/subPackage/setting/setting", // url: "/subPackage/setting/setting",
...@@ -25,57 +34,80 @@ export default { ...@@ -25,57 +34,80 @@ export default {
// plus.navigator.closeSplashscreen() // plus.navigator.closeSplashscreen()
// } // }
// }) // })
} else { } else {
uni.redirectTo({ uni.redirectTo({
url: "/pages/starPage/index", url: "/pages/starPage/index",
success: function () { success: function () {
plus.navigator.closeSplashscreen() plus.navigator.closeSplashscreen();
} },
}) });
} }
// 强制竖屏 // 强制竖屏
plus.screen.lockOrientation("portrait-primary") plus.screen.lockOrientation("portrait-primary");
// 当前版本号 // 当前版本号
plus.runtime.getProperty(plus.runtime.appid, function (wgtinfo) { plus.runtime.getProperty(plus.runtime.appid, function (wgtinfo) {
let versionNumber let versionNumber;
if (wgtinfo.version) { if (wgtinfo.version) {
versionNumber = wgtinfo.version; versionNumber = wgtinfo.version;
} else { } else {
versionNumber = plus.runtime.version; versionNumber = plus.runtime.version;
} }
// 存储所有请求的头部信息 // 存储所有请求的头部信息
uni.setStorage({ key: 'm-header-version', data: versionNumber }); uni.setStorage({ key: "m-header-version", data: versionNumber });
}) });
const platform = uni.getSystemInfoSync() const platform = uni.getSystemInfoSync();
if (uni.getStorageSync('m-agreement') && platform.osName === 'ios') { if (uni.getStorageSync("m-agreement") && platform.osName === "ios") {
loadNetwork() loadNetwork();
loadDevice() loadDevice();
loadLocation() loadLocation();
loadUuid() loadUuid();
} }
// 首页配置 // 首页配置
await ininIndex() await ininIndex();
await initIndexGoods() await initIndexGoods();
// APP配置和H5配置 // APP配置和H5配置
await initH5Setting() await initH5Setting();
await initAPPSetting() await initAPPSetting();
}, },
onShow: async function () { onShow: async function () {
const versionNumber = await loadVersion() // IOS 打开之后,需要检查版本号
console.log(versionNumber, 'versionNumber') try {
const versionNumber = await loadVersion();
let headerDevice = uni.getStorageSync("m-header-device");
if (headerDevice) {
const { appVersion } = JSON.parse(headerDevice);
if (appVersion * 1 !== versionNumber) {
// 版本号不一致,需要更新
console.log('版本号不一致,需要更新')
}
}
} catch (error) {
console.log(error, "error");
}
}, },
/** 切换到后台 */ /** 切换到后台 */
onHide() { onHide() {
uni.setStorageSync('canRefreshWeb', 'YES') uni.setStorageSync("canRefreshWeb", "YES");
},
methods: {
async checkVersion() {
const versionNumber = await loadVersion();
let headerDevice = uni.getStorageSync("m-header-device");
if(headerDevice) {
const {appVersion} = JSON.parse(headerDevice);
console.log(appVersion,versionNumber,'appVersion,versionNumber');
if(appVersion*1 !== versionNumber*1) {
console.log('版本号不一致,需要更新')
}
}
}
} }
} };
</script> </script>
<style> <style>
......
...@@ -39,14 +39,7 @@ export const initHeaderDevice = function () { ...@@ -39,14 +39,7 @@ export const initHeaderDevice = function () {
appName: 'DDH', appName: 'DDH',
appSourceId: modelApp, appSourceId: modelApp,
appCode:8, appCode:8,
// mac: "", // mac pushType: "1",
// wifiMac: "", // wifimac
// clientIp: "",
// carrierOperator: '', //运营商
pushType: "1", //设备push接入类型(1. 小米PUSH,2. 极光PUSH)
// electricQuantity: "", //电量
// totalStorage: "", //存储总空间
// availableStorage: "", //可用存储空间
channel: channel ? channel : '', channel: channel ? channel : '',
token: new Date().getTime(), token: new Date().getTime(),
device: plus.os.name, device: plus.os.name,
......
...@@ -7,10 +7,6 @@ const request = async (url, type, data) => { ...@@ -7,10 +7,6 @@ const request = async (url, type, data) => {
let rd let rd
if (headerDevice) { if (headerDevice) {
// 获取版本号 // 获取版本号
let AppVersion = uni.getStorageSync('m-header-version');
AppVersion = AppVersion === '1.0.8' ? AppVersion : '1.0.8';
const device = Object.assign({}, JSON.parse(headerDevice))
device.appVersion = AppVersion
console.log(headerDevice, '设备头信息') console.log(headerDevice, '设备头信息')
console.log('+++++++++++++++++++++++++从缓存拿数据') console.log('+++++++++++++++++++++++++从缓存拿数据')
rd = encodeURIComponent(headerDevice) rd = encodeURIComponent(headerDevice)
......
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