12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view class="pages">
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- params:{
- token:'',
- }
-
- }
- },
- onShow() {
- let self = this;
- uni.getStorage({
- key : 'userInfo',
- success:function(res){
- console.log('userInfo customerType',res.data.customerType);
- if(res.data.customerType =='1'){
- console.log('个人用户');
- self.$api.href('/pages/mall/mall')
- }else{
- self.$api.href('/pages/use/use')
- };
- }
- });
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style >
- /* @import url("./index.css"); */
- </style>
|