| | |
| | | </van-row> |
| | | <van-row class="lable"> |
| | | <van-col span="12">检验值</van-col> |
| | | <van-col span="12" style="text-align: right; color: #769AFF ;">血红蛋白:102</van-col> |
| | | <van-col span="12" style="text-align: right; color: #769AFF ;" @click="topath('/report/item')">点击查看详情</van-col> |
| | | </van-row> |
| | | <van-row class="lable"> |
| | | <van-col span="12">最新检查日期</van-col> |
| | |
| | | </template> |
| | | <script lang="ts" setup> |
| | | import {ref,reactive,watchEffect,watch} from 'vue' |
| | | import {useRouter} from 'vue-router' |
| | | const router=useRouter() |
| | | const inputValue=ref('') |
| | | const topath=(url:string)=>{ |
| | | console.log('sss') |
| | | router.push(url) |
| | | } |
| | | </script> |
| | | <style lang="scss"> |
| | | .report{ |