| 12345678910111213141516171819202122232425262728293031323334 |
- <script>
- import config from './config'
- import { getToken } from '@/utils/auth'
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import '@/node_modules/uview-ui/index.scss';
- /* 修复内容区域样式 */
- .u-tabbar__content {
- background-color: transparent !important;
- box-shadow: none !important;
- height: 140rpx;
- border: none;
- }
-
-
- /* 修复图标尺寸 - 精确选择器路径 */
- .u-tabbar-item .u-tabbar-item__icon .u-icon__img {
- width: 80rpx !important;
- height: 80rpx !important;
- }
- </style>
|