App.vue 657 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. @import "static/iconfont/iconfont.css";
  16. body,
  17. page {
  18. background: #F7F7F7;
  19. font-size: 14px;
  20. }
  21. /deep/.u-tabs {
  22. height: 44px;
  23. // background: #052E5D;
  24. background: #FFFFFF;
  25. .u-tabs__wrapper__nav {
  26. height: 44px;
  27. align-items: center;
  28. .u-tabs__wrapper__nav__item {
  29. height: 44px;
  30. .u-tabs__wrapper__nav__item__text {
  31. font-size: 15px;
  32. }
  33. }
  34. }
  35. }
  36. </style>