12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <script>
- export default {
- onLaunch: function() {
- },
- onShow: function() {
- },
- onHide: function() {},
- methods: {
- }
- }
- </script>
- <style lang="scss">
- @import 'uview-ui/index.scss';
- /*每个页面公共css */
- @import '@/common/common.style.scss';
- /*toast字体图标*/
- @import '@/components/iconfont.css';
- // uni-tabbar {
- // .uni-tabbar {
- // // tab背景
- // // background-image: linear-gradient(to top, #FAF8F8, #FFFFFF) !important; // tab背景图片或者渐变色,背景色和背景图片最多选择一个进行设置
- // height: 100rpx;
- // // box-shadow: 0rpx -2rpx 35rpx 0rpx rgba(1, 31, 63, 0.09);
- // .uni-tabbar-border {
- // background-color: #ffffff !important; // tabBar上边框的颜色
- // }
- // .uni-tabbar__bd {
- // // tabBar单项
- // .uni-tabbar__icon {
- // width: 40rpx !important;
- // height: 40rpx !important;
- // }
- // .uni-tabbar__label {
- // font-size: 24rpx !important;
- // }
- // }
- // }
- // }
- </style>
|