123456789101112131415161718192021222324252627282930 |
- <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">
- /*每个页面公共css */
- @import '@/uni_modules/uni-scss/index.scss';
- // 设置整个项目的背景色
- page {
- color: $uni-main-color;
- font-size: 28rpx;
- background: $uni-background-color;
- img {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|