| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- .display-flex-start {
- display: flex;
- align-items: center;
- }
- .display-flex-end {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .display-between {
- display: flex;
- justify-content: space-between;
- }
- .display-around{
- display: flex;
- justify-content: space-around;
- }
- .display-between-column {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .display-around-column {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .display-wrap {
- display: flex;
- flex-wrap: wrap;
- }
- .items-center {
- align-items: center;
- }
- </style>
|