租房小程序前端代码
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.

22 lines
432 B

8 months ago
8 months ago
8 months ago
8 months ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. },
  6. onShow: function() {
  7. this.$store.commit('initConfig')
  8. if(uni.getStorageSync('token')){
  9. this.$store.commit('getUserInfo')
  10. }
  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. @import './styles/index.scss';
  20. </style>