智慧画屏客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
439 B

3 years ago
3 years ago
3 years ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. },
  6. onShow: function() {
  7. console.log('App Show')
  8. },
  9. onHide: function() {
  10. console.log('App Hide')
  11. }
  12. }
  13. </script>
  14. <style>
  15. /*每个页面公共css */
  16. @import './static/iconfont/iconfont.css';
  17. .main_container {
  18. width: 100%;
  19. height: 100vh;
  20. background: url(./static/images/bg.png) no-repeat left top;
  21. background-size: cover;
  22. }
  23. </style>