This commit is contained in:
2022-10-10 10:19:18 +08:00
commit b6c903fd4d
191 changed files with 51152 additions and 0 deletions

22
App.vue Normal file
View File

@@ -0,0 +1,22 @@
<script>
export default {
onLaunch: function() {
// #ifdef APP-PLUS
// plus.screen.lockOrientation('landscape-primary');
plus.navigator.setFullscreen(true);
// #endif
},
onHide: function() {
console.log('App Hide')
},
onUnload() {
// #ifdef APP-PLUS
plus.screen.lockOrientation('portrait-primary');
// #endif
}
}
</script>
<style>
/*每个页面公共css */
</style>