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

23 lines
431 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. initEid();
  8. },
  9. onShow: function() {
  10. console.log('App Show')
  11. },
  12. onHide: function() {
  13. console.log('App Hide')
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. /*每个页面公共css */
  19. @import '@/uni_modules/uview-ui/index.scss';
  20. @import 'common/css/app.scss'
  21. </style>