App.vue 617 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <script>
  2. export default {
  3. onLaunch: function () {
  4. require("./utils/tool").mount();
  5. },
  6. onShow: function () {
  7. },
  8. onHide: function () {
  9. }
  10. }
  11. </script>
  12. <style lang="scss">
  13. /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
  14. @import "uview-ui/index.scss";
  15. body,
  16. page {
  17. background: #F7F7F7;
  18. font-size: 14px;
  19. }
  20. /deep/.u-tabs {
  21. height: 44px;
  22. // background: #052E5D;
  23. background: #FFFFFF;
  24. .u-tabs__wrapper__nav {
  25. height: 44px;
  26. align-items: center;
  27. .u-tabs__wrapper__nav__item {
  28. height: 44px;
  29. .u-tabs__wrapper__nav__item__text {
  30. font-size: 15px;
  31. }
  32. }
  33. }
  34. }
  35. </style>