1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <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">
- #__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) {
- /deep/.u-tabbar__content {
- height: 45px!important;
- }
- }
- @media screen and (min-width: 375px) {
- /deep/.u-tabbar__content {
- height: 55px!important;
- }
- }
- @media screen and (min-width: 425px) {
- /deep/.u-tabbar__content {
- height: 65px!important;
- }
- }
- </style>
|