123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <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">
- /*每个页面公共css */
- *{
- margin: 0;
- padding: 0;
- }
- @import "uview-ui/index.scss";
- .u-font-xs {
- font-size: 22rpx;
- }
-
- .u-font-sm {
- font-size: 26rpx;
- }
-
- .u-font-md {
- font-size: 28rpx;
- }
-
- .u-font-lg {
- font-size: 30rpx;
- }
-
- .u-font-xl {
- font-size: 34rpx;
- }
-
- .u-flex {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- }
-
- .u-flex-wrap {
- flex-wrap: wrap;
- }
-
- .u-flex-nowrap {
- flex-wrap: nowrap;
- }
-
- .u-col-center {
- align-items: center;
- }
-
- .u-col-top {
- align-items: flex-start;
- }
-
- .u-col-bottom {
- align-items: flex-end;
- }
-
- .u-row-center {
- justify-content: center;
- }
-
- .u-row-left {
- justify-content: flex-start;
- }
-
- .u-row-right {
- justify-content: flex-end;
- }
-
- .u-row-between {
- justify-content: space-between;
- }
-
- .u-row-around {
- justify-content: space-around;
- }
-
- .u-text-left {
- text-align: left;
- }
-
- .u-text-center {
- text-align: center;
- }
-
- .u-text-right {
- text-align: right;
- }
-
- .u-flex-col {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- }
- .u-flex-1{
- flex:1
- }
- </style>
|