展品维保小程序前端代码接口
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
406 B

2 weeks ago
  1. <script>
  2. export default {
  3. onLaunch() {
  4. // 请求初始化一切配置
  5. console.log('App OnLaunch')
  6. },
  7. async onShow() {
  8. console.log('App Show')
  9. await this.$store.dispatch('initData')
  10. // console.log('配置数据初始化完成')
  11. },
  12. onHide: function() {
  13. console.log('App Hide')
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. // @import '@/uni_modules/uv-ui-tools/index.scss';
  19. </style>