123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <script>
-
-
-
- import './config/font.js'
- import "./config/.env.js"
- export default {
- data() {
- return {
- projectName: "",
- }
- },
- onLoad() {
- },
- onLaunch: function() {
-
-
- },
- onShow: function() {
-
-
- },
- onReady: function() {
- console.log("aaa")
- },
- onHide: function() {
-
- },
- methods:{
-
- }
- }
- </script>
- <style lang="scss">
- .springClass {
- ::v-deep.u-tabbar__content {
- background-image: url("@/assets/img/spring/indexTabbar.png");
- background-size: 100% 100%;
- background-position: center;
- background-repeat: no-repeat;
- border: none !important;
- }
- ::v-deep.u-tabbar__content::after {
-
- border: none !important;
- }
- }
- #__vconsole{
- z-index: 99999;
- position: absolute;
- }
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "uview-ui/index.scss";
- //
- /*每个页面公共css */
- //@import 'static/css/style.css';
-
- @import '@/assets/font/iconfont.css';
- @import '@/iconfont/iconfont.css';
-
- html, body {
- background-color: #F2F4F4;
- margin: 0;
- padding: 0;
- } ygff
- // 后退图标
- .back{
- display: inline-block;
- font-size: 18px;
- float: left;
- margin-left: 11px;
- }
- .uni-icon-success-no-circle:before {
- content: "" !important ;
- display: none;
- }
- .uni-toast .uni-toast__content{
- margin: -10px 1px 10px 1px;
- }
- .uni-modal .uni-modal__btn{
- flex: 1;
- height: 43px;
- line-height: 43px !important;;
- font-size: 13px !important;
- box-sizing: border-box;
- cursor: pointer;
- text-align: center;
- border-radius: 1px;
- }
- // @media screen and (min-width: 320px) {
- // ::v-deep.u-tabbar__content {
- // height: 45px!important;
- // }
- // }
- // @media screen and (min-width: 375px) {
- // ::v-deep.u-tabbar__content {
- // height: 55px!important;
- // }
- // }
- // @media screen and (min-width: 425px) {
- // ::v-deep.u-tabbar__content {
- // height: 65px!important;
- // }
- // }
- </style>
|