| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <script>
- export default {
- onLaunch() {
- console.log('App Launch')
- },
- onShow() {
- console.log('App Show')
- },
- onHide() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /* 全局样式 */
- page {
- background-color: #f2f2f2;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
- color: #333333;
- box-sizing: border-box;
- }
- /* 通用卡片样式 */
- .card {
- background-color: #fff;
- border-radius: 24rpx;
- padding: 32rpx;
- margin-bottom: 24rpx;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.04);
- }
- /* 隐藏滚动条 */
- ::-webkit-scrollbar {
- display: none;
- }
- /* 安全区域底部留白 */
- .safe-bottom {
- padding-bottom: env(safe-area-inset-bottom);
- }
- </style>
|