12345678910111213141516171819202122232425262728293031323334353637383940 |
- <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';
- @import '@/static/css/common.scss';
- // 设置整个项目的背景色
- page {
- background-color: #f3f6f8;
- color: $uni-main-color;
- width: 100%;
- height: 100%;
- font-size: 28rpx;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .container {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- </style>
|