45
chenyc
2022-10-27 9d6f499ffbfb3762ecdc671adab192aa273fda91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<template>
    <div class="app-view">
        <router-view></router-view>
    </div>
</template>
 
 
<script setup lang="ts">
    import { Session } from '@/utils/storage'
    import { userInfoStore } from '@/stores/userInfo'
    import { ajaxPost} from '@/utils/axios'
    const userInfo = userInfoStore()
    const token =Session.get('token')
    // const token='eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJQQVRfU0ZfUEFUMjQ0MTUyMTM4MzcwMjgyN19TRl8iLCJhdXRoIjpbeyJhdXRob3JpdHkiOiJhZG1pbiJ9XSwiaWF0IjoxNjY2ODQ4OTI4LCJleHAiOjE2NjcyMDg5Mjh9.R7BtrJHJJFywW6bytMWB6EVVYdD5rpMZQAcVnQG-8t4'
    if (token){
        Session.set('token', token)
        console.log('token='+Session.get('token '))
        ajaxPost('/patient/info/getPatientInfo','').then((re:any)=>{
            console.log(re,'得到患者的信息getUserinfo')
            userInfo.setPatient(re)
        })
 
    } else {
        console.log('token为空')
    }
</script>
 
<style scoped lang="scss">
.app-view {
    display: grid;
    background-color:#F6FAFF;
}
 
</style>