| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <script>
- export default {
- onLaunch: function() {
- // console.log('App Launch')
- },
- onShow: function() {
- // console.log('App Show')
- },
- onHide: function() {
- // console.log('App Hide')
- }
- }
- </script>
- <style>
- /*每个页面公共css */
- .body {
- /* width: 100vw; */
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .body-radius {
- border-radius: 50rpx;
- overflow: hidden;
- /* 确保边框圆角不会溢出 */
- }
- .uni-row {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .uni-column {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .uni-jct {
- justify-content: start;
- }
- .uni-jcc {
- justify-content: center;
- }
- .uni-jcsa {
- justify-content: space-around;
- }
- .uni-jcsb {
- justify-content: space-between;
- }
- .uni-jcse {
- justify-content: space-evenly;
- }
- .hidden {
- visibility: hidden;
- }
- </style>
|