|
|
|
<script>
|
|
|
|
import Vue from 'vue'
|
|
|
|
import utils from '@/utils/encode'
|
|
|
|
export default {
|
|
|
|
onLaunch: function() {
|
|
|
|
uni.getSystemInfo({
|
|
|
|
success: function(e) {
|
|
|
|
// #ifndef MP
|
|
|
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
|
|
|
if (e.platform == 'android') {
|
|
|
|
Vue.prototype.CustomBar = e.statusBarHeight + 50;
|
|
|
|
} else {
|
|
|
|
Vue.prototype.CustomBar = e.statusBarHeight + 45;
|
|
|
|
};
|
|
|
|
// #endif
|
|
|
|
|
|
|
|
// #ifdef MP-WEIXIN
|
|
|
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
|
|
|
let custom = wx.getMenuButtonBoundingClientRect();
|
|
|
|
Vue.prototype.Custom = custom;
|
|
|
|
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
|
|
|
|
// #endif
|
|
|
|
|
|
|
|
// #ifdef MP-ALIPAY
|
|
|
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
|
|
|
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
|
|
|
|
// #endif
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
onShow: function() {
|
|
|
|
|
|
|
|
console.log('App Show')
|
|
|
|
const JSESSIONID = utils.uuid()
|
|
|
|
console.log(JSESSIONID)
|
|
|
|
// console.log(utils.bcrypt(JSESSIONID))
|
|
|
|
uni.getLocation({
|
|
|
|
type: 'wgs84',
|
|
|
|
success: function(res) {
|
|
|
|
console.log('当前位置的经度:' + res.longitude);
|
|
|
|
console.log('当前位置的纬度:' + res.latitude);
|
|
|
|
uni.setStorage({
|
|
|
|
key: 'service_baseUrl',
|
|
|
|
data: 'https://www.51xingka.net/LSMOIL/',
|
|
|
|
success: function() {
|
|
|
|
console.log('缓存baseUrl成功');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onHide: function() {
|
|
|
|
console.log('App Hide')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
/*每个页面公共css */
|
|
|
|
@import "colorui/main.css";
|
|
|
|
@import "colorui/icon.css";
|
|
|
|
@import "common/common.css";
|
|
|
|
</style>
|