useRouter.vue 619 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view class="pages">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. params:{
  10. token:'',
  11. }
  12. }
  13. },
  14. onShow() {
  15. let self = this;
  16. uni.getStorage({
  17. key : 'userInfo',
  18. success:function(res){
  19. console.log('userInfo customerType',res.data.customerType);
  20. if(res.data.customerType =='1'){
  21. console.log('个人用户');
  22. self.$api.href('/pages/mall/mall')
  23. }else{
  24. self.$api.href('/pages/use/use')
  25. };
  26. }
  27. });
  28. },
  29. onLoad() {
  30. },
  31. methods: {
  32. }
  33. }
  34. </script>
  35. <style >
  36. /* @import url("./index.css"); */
  37. </style>