1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "@/uni_modules/uview-ui/index.scss";
- //@import '@/assets/font/font.css';
-
- </style>
- <script>
-
- import './config/.env.js'
- import './assets/js/font.js'
- export default {
- onLaunch: function() {
- console.log('App Launch')
-
- },
-
- onShow: function() {
-
- console.log('App Show ---- App Show')
- },
- onHide: function() {
- console.log('App Hide -- App Hide -App Hide')
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- html, body {
- background-color: #F2F4F4;
- margin: 0;
- padding: 0;
- }
- /deep/.u-divider{
- color: rgba(182, 189, 195, 1);
- font-size: 12px;
-
- font-family: 'Regular';
- }
- .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;
- }
- /deep/.u-navbar-content-title{
- font-family: 'Medium';
-
- }
- /* @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;
- }
- } */
- .u-back-text{
- color: #101010 !important;
- font-size: 17px !important
- }
- </style>
|