| | |
| | | round |
| | | width="50px" |
| | | height="50px" |
| | | src="https://fastly.jsdelivr.net/npm/@vant/assets/cat.jpeg" |
| | | :src="patientInfo.patientInfo.patientAvatarIcon" |
| | | /> |
| | | </div> |
| | | <div class="rowtext"> |
| | | 用户名:1771723243242 |
| | | 手机号:{{patientInfo.patientInfo.patientTelNo}} |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | |
| | | <van-row style="padding-left: 20px;"> |
| | | <van-col span="16" class="info16"> |
| | | <div class="div1">张三丰 |
| | | <div class="div1">{{patientInfo.patientInfo.patientName}} |
| | | <span class="but">排班提醒</span> |
| | | </div> |
| | | <div class="div2">患者卡号</div> |
| | | <div class="div3">000000001</div> |
| | | <div class="div3">{{patientInfo.patientInfo.patientCardNo}} </div> |
| | | </van-col> |
| | | <van-col span="8" class="info8"> |
| | | <div class="img"> |
| | |
| | | </div> |
| | | </div> |
| | | <div class="ButtonBody"> |
| | | <van-button type="primary" round block>退出登录</van-button> |
| | | <van-button type="primary" @click="logOUT" round block>退出登录</van-button> |
| | | </div> |
| | | <van-tabbar v-model="active" @change="tabChang"> |
| | | <van-tabbar-item name="home" icon="like">首页</van-tabbar-item> |
| | |
| | | </div> |
| | | </template> |
| | | <script lang="ts" setup> |
| | | import { ref } from 'vue' |
| | | import { ref,computed } from 'vue' |
| | | import {ajaxPost} from '@/utils/axios' |
| | | import { Session } from '@/utils/storage' |
| | | import { userInfoStore } from '@/stores/userInfo' |
| | | import serve1 from './imgs/serve1.png' |
| | | import { Image as VanImage,Tabbar as VanTabbar , TabbarItem as VanTabbarItem} from 'vant' |
| | | import {useRouter} from 'vue-router' |
| | | const router=useRouter() |
| | | const userInfo = userInfoStore() |
| | | const active=ref('my') |
| | | const tabChang=(index:any)=>{ |
| | | alert(index) |
| | | if (index==='home'){ |
| | | router.push('/') |
| | | } else { |
| | | router.push('my') |
| | | } |
| | | } |
| | | const patientInfo=computed(()=>{ |
| | | return userInfo.patient |
| | | }) |
| | | const logOUT=()=>{ |
| | | ajaxPost('/patient/info/logout','').then((re:any)=>{ |
| | | console.log(re) |
| | | Session.clear() // 清除缓存/token等 |
| | | router.push('login') |
| | | }) |
| | | } |
| | | </script> |
| | | <style lang="scss" scoped> |
| | |
| | | background: #166bd3; |
| | | } |
| | | .ButtonBody{ |
| | | margin-top: 20px; |
| | | margin-top: 40px; |
| | | width: 92%; |
| | | margin-left: 4%; |
| | | // background: #166bd3; |