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.

26 lines
418 B

2 months ago
2 months ago
2 months 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 lang="scss">
  15. /*每个页面公共css */
  16. @import "@/uni_modules/uview-plus/index.scss";
  17. @import '@/static/css/app.scss';
  18. image {
  19. display: block;
  20. width: 100%;
  21. // height: 100%;
  22. }
  23. </style>