123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <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 lang="scss">
-
- html, body {
- background-color:#F2F4F6;
- margin: 0;
- padding: 0;
- }
- // 导航
- .navbar-c{
- background-color: #fff;
- height: 88rpx;
- line-height: 88rpx;
- padding: 0 24rpx;
- display: flex;
- align-items: center;
- position: sticky;
- left: 0;
- right: 0;
- top: 0;
- z-index: 99999;
- .back{
- .img{
- width: 48rpx;
- height: 48rpx;
- vertical-align: middle;
- }
- }
-
- .title{
- color: rgb(16,16,16);
- font-size: 36rpx;
- flex: 1;
- position: absolute;
- left: 0;
- right: 0;
- text-align: center;
- flex-shrink: 0;
-
- .img{
- width: 32rpx;
- height: 32rpx;
- vertical-align: middle;
- margin-left: 8rpx;
- }
- }
- .right{
- display: flex;
- align-items: center;
- margin-left: auto;
- font-size: 32rpx;
- color: rgba(16,16,16,1);
- .img{
- width: 32rpx;
- height: 32rpx;
- margin-right: 4rpx;
- }
- }
- }
- // 导航栏标题文字
- .u-title {
- font-size: 36rpx !important
- }
- /deep/.uicon-nav-back{
- color: #101010 !important;
- font-weight: bold !important;
- font-size: 36rpx !important
- }
- #__vconsole{
- z-index: 99999;
- position: absolute;
- }
- .slot{
- color: rgba(16,16,16,1);
- font-size: 32rpx;
- margin-right: 32rpx;
- }
- .uni-icon-success-no-circle:before {
- content: "" !important ;
- display: none;
- }
- .uni-toast .uni-toast__content{
- margin: -10px 1px 10px 1px;
- }
-
-
- </style>
|