1234567891011121314151617181920212223242526272829303132333435363738 |
- <script>
- export default {
- async onLaunch(options) {
- console.log('App Launch')
- if (this.$api.user.isLogin()) {
- await this.$api.user.info().then(res => {
- this.$store.dispatch('user/info', res.data)
- })
- } else {
- this.$loading()
- await this.$api.user.login().then(async res => {
- this.$hideLoading()
- const { token, user_info } = res.data
- await this.$store.dispatch('user/token', token)
- await this.$store.dispatch('user/info', user_info)
- uni.reLaunch({
- url: options.path ? '/' + options.path : '/pages/index/index'
- })
- })
- }
- },
- onShow() {
- console.log('App Show')
- },
- onHide() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import "@/uni_modules/uview-ui/index.scss";
- @import '@/static/css/flex.scss';
- @import '@/static/css/common.scss';
- @import '@/static/css/iconfont.css';
- </style>
|