Commit 5ab29ebb authored by caimeng's avatar caimeng

暂存1

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