| 123456789101112131415161718192021222324252627282930313233343536 |
- <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">
- .status_bar {
- height: var(--status-bar-height);
- width: 100%;
- }
- .top_view {
- height: var(--status-bar-height);
- width: 100%;
- position: fixed;
- top: 0;
- z-index: 999;
- }
- /*每个页面公共css */
- @import "@/uni_modules/uview-plus/index.scss";
- /*每个页面公共css */
- @import "common/global.css";
- </style>
|