12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <script>
- import './config/font.js'
- import "./config/.env.js"
- export default {
- onLaunch: function() {
-
-
- },
- onShow: function() {
-
-
- },
- onReady: function() {
- console.log("aaa")
- },
- onHide: function() {
-
- },
- methods:{
-
- }
- }
- </script>
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "uview-ui/index.scss";
- //
- /*每个页面公共css */
- //@import 'static/css/style.css';
- @import '@/iconfont/iconfont.css';
- @import '@/assets/font/iconfont.css';
- .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) {
- /deep/.u-tabbar__content {
- height: 42px!important;
- }
- }
- @media screen and (min-width: 375px) {
- /deep/.u-tabbar__content {
- height: 52px!important;
- }
- }
- @media screen and (min-width: 425px) {
- /deep/.u-tabbar__content {
- height: 62px!important;
- }
- }
- </style>
|