1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <script>
- export default {
- onLaunch: function() {
- // console.log('App Launch')
- },
- onShow: function() {
- // console.log('App Show')
- },
- onHide: function() {
- // console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- @import "uview-ui/index.scss";
- @import "./static/iconfont/iconfont.css";
- /*每个页面公共css */
- :root {
- --main-color:rgb(17, 209, 131);
- --bg-color:#f7f7f7;
- }
- .main-color-btn {
- background-color: var(--main-color) !important;
- }
-
- .text-color-red{
- color: #fa3534;
- }
- .wrap{
- padding: 24rpx;
- }
- .fixed-button{
- height: 80px;
- .u-btn{
- position: fixed!important;
- left: 0;
- bottom: 0;
- right: 0;
- z-index: 100!important;
- }
- }
- .screen-box{
- margin: 24rpx 24rpx 0;
- }
- </style>
|