1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <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">
- page {
- width: 100%;
- height: 100%;
- background-attachment: fixed;
- background-image: url(./static/bg1Pad.png);
- background-position: center;
- background-size:750rpx auto;
- background-repeat: repeat;
- }
- // /* #ifdef H5 */
- // body {
- // max-width: 828rpx; //最大宽度自己可以调整
- // margin: auto !important;
- // }
- /* #endif */
- .flexV {
- display: flex;
- align-items: center;
- }
- .flexA {
- display: flex;
- justify-content: center;
- }
- .flexC {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .flexS {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .flexB {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .flexT {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- }
- .flexM {
- display: flex;
- flex-direction: column;
- }
- .flexX {
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- }
- </style>
|