| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <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 {
- 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;
- }
- </style>
|