mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-23 21:36:39 +08:00
23 lines
378 B
Vue
23 lines
378 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch')
|
|
},
|
|
onShow: function() {
|
|
//判断用户是否登录
|
|
this.java110Context.factory.login.checkLoginStatus();
|
|
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
@import "colorui/main.css";
|
|
@import "colorui/icon.css";
|
|
|
|
</style>
|