1234567891011121314151617181920212223242526272829303132333435 |
- <script>
- import routingIntercept from '@/utils/permission.js'
- export default {
- onLaunch: function() {
- console.log('App Launch')
- routingIntercept()
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- @import "uview-ui/index.scss";
- @import "@/common/iconfont/icon.scss";
- /*每个页面公共css */
- .status_bar {
- height: var(--status-bar-height);
- width: 100%;
- }
- uni-modal{
- z-index: 19999 !important;
- }
- page{
- color: rgba(0, 0, 0, 0.8);
- font-family: "阿里妈妈东方大楷 Regular";
- src: url("https://at.alicdn.com/wf/webfont/SvVWOIfU0QFS/uL71WQsTF0hJ.woff2") format("woff2");
- // font-display: swap;
- }
- </style>
|