App.vue 1000 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. },
  5. onShow: function() {
  6. },
  7. onHide: function() {},
  8. methods: {
  9. }
  10. }
  11. </script>
  12. <style lang="scss">
  13. @import 'uview-ui/index.scss';
  14. /*每个页面公共css */
  15. @import '@/common/common.style.scss';
  16. /*toast字体图标*/
  17. @import '@/components/iconfont.css';
  18. // uni-tabbar {
  19. // .uni-tabbar {
  20. // // tab背景
  21. // // background-image: linear-gradient(to top, #FAF8F8, #FFFFFF) !important; // tab背景图片或者渐变色,背景色和背景图片最多选择一个进行设置
  22. // height: 100rpx;
  23. // // box-shadow: 0rpx -2rpx 35rpx 0rpx rgba(1, 31, 63, 0.09);
  24. // .uni-tabbar-border {
  25. // background-color: #ffffff !important; // tabBar上边框的颜色
  26. // }
  27. // .uni-tabbar__bd {
  28. // // tabBar单项
  29. // .uni-tabbar__icon {
  30. // width: 40rpx !important;
  31. // height: 40rpx !important;
  32. // }
  33. // .uni-tabbar__label {
  34. // font-size: 24rpx !important;
  35. // }
  36. // }
  37. // }
  38. // }
  39. </style>