You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1015 B

<template>
1 month ago
<view>
<common-loading />
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad(option) {
uni.showLoading({
title: '加载中...'
})
22 hours ago
// if(uni.getStorageSync('noReload')){
// uni.removeStorageSync('noReload')
// }
// if (uni.getStorageSync('hiver_token')) {
// if (uni.getStorageSync('wayValue') == 1) {
// uni.reLaunch({
// url: '/package2/other/newLogisticsIndex'
// })
// } else if (uni.getStorageSync('wayValue') == 0) {
uni.reLaunch({
url: '/pages/index/index'
})
22 hours ago
// } else if (uni.getStorageSync('wayValue') == 2) {
// uni.reLaunch({
// url: '/package1/other/custom'
// })
// }
// } else if(option.khid){
// uni.reLaunch({
// url: '/package1/index/downStearmList?khid='+option.khid
// })
// }else {
// uni.reLaunch({
// url: '/package2/login/login'
// })
// }
uni.hideLoading();
},
methods: {
}
}
</script>
<style>
</style>