123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <script>
- export default {
- onLaunch: function () {
- require("./utils/tool").mount();
- },
- onShow: function () {
- },
- onHide: function () {
- }
- }
- </script>
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "uview-ui/index.scss";
- @import "static/iconfont/iconfont.css";
- body,
- page {
- background: #F7F7F7;
- font-size: 14px;
- }
- /deep/.u-tabs {
- height: 44px;
- // background: #052E5D;
- background: #FFFFFF;
- .u-tabs__wrapper__nav {
- height: 44px;
- align-items: center;
- .u-tabs__wrapper__nav__item {
- height: 44px;
- .u-tabs__wrapper__nav__item__text {
- font-size: 15px;
- }
- }
- }
- }
- </style>
|