123456789101112131415161718192021222324252627282930313233343536373839 |
- <script>
- export default {
- globalData: {
- token: ''
- },
- onLaunch: function () {
- console.log('App Launch')
- },
- onShow: function () {
- console.log('App Show')
- },
- onHide: function () {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- /deep/ .uni-navbar--fixed{
- width: 100%;
- }
- /deep/ .uni-nav-bar-text{
- font-weight: 700;
- }
- /deep/ .uni-icons{
- font-size: 27px;
- }
- /deep/ .uni-navbar__header-container{
- position: absolute;
- left: 70px;
- right: 70px;
- min-width: 0;
- }
- /deep/ .uni-navbar--border{
- border: none;
- }
- </style>
|