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.

30 lines
515 B

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. <script>
  2. import { initEid } from './mp_ecard_sdk/main'
  3. export default {
  4. onLaunch: function() {
  5. console.log('App Launch')
  6. // #ifdef MP-WEIXIN
  7. initEid();
  8. // #endif
  9. },
  10. onShow: function() {
  11. console.log('App Show')
  12. },
  13. onHide: function() {
  14. console.log('App Hide')
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. /*每个页面公共css */
  20. @import "@/uni_modules/uview-plus/index.scss";
  21. @import '@/static/css/app.scss';
  22. image {
  23. display: block;
  24. width: 100%;
  25. // height: 100%;
  26. }
  27. </style>