HomeLease/App.vue

24 lines
403 B
Vue
Raw Normal View History

2025-08-12 15:38:25 +08:00
<script>
2025-08-13 11:10:19 +08:00
export default {
onLaunch: function () {
console.log('App Launch')
uni.authorize({
scope: 'scope.userLocation',
success: function () {
console.log('用户同意了授权')
},
})
2025-08-13 11:10:19 +08:00
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
},
}
2025-08-12 15:38:25 +08:00
</script>
<style>
2025-08-13 11:10:19 +08:00
/*每个页面公共css */
2025-08-12 15:38:25 +08:00
</style>