学员端小程序
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.

25 lines
467 B

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