hejianhao
2025-02-21 9f913e3a8bbcd3ca91d50798a49fc4aa2c2336b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
    export default {
        onLaunch: function() {
            console.log('App Launch')
        },
        onShow: function() {
            console.log('App Show')
        },
        onHide: function() {
            console.log('App Hide')
        }
    }
</script>
 
<style lang="scss">
    @import "@/uni_modules/uview-ui/index.scss";
    @import "@/static/style/index.scss";
    /*每个页面公共css */
</style>