1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- created() {
- //跳转页面为tabBar页面
- // console.log(uni.getStorageSync('lifeData'))
- // if(uni.getStorageSync('lifeData')){
- // uni.switchTab({
- // url: '/pages/home/home'
- // })
- // }else{
- // uni.redirectTo({
- // url: '/pages/login/login'
- // });
- // }
- },
- methods: {}
- }
- </script>
- <style>
- </style>
|