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.
58 lines
1.5 KiB
58 lines
1.5 KiB
<script> |
|
import Vue from 'vue' |
|
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') |
|
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>
|
|
|