<template>
|
<div class="report">
|
<van-nav-bar
|
title=""
|
left-text="返回"
|
left-arrow
|
@click="fanhui"
|
/>
|
<div class="inputdiv">
|
<van-field left-icon="search" class="input" v-model="inputValue" placeholder="模糊匹配项目、日期检索" />
|
</div>
|
<div class="listdiv">
|
<div class="listrow" v-for="x in 6" :key="x">
|
<van-row>
|
<div class="info"></div>
|
<van-row class="lable">
|
<van-col span="18">
|
<span class="labletext">医嘱名称:</span>
|
<span>人促红素注射液(环尔博)</span>
|
</van-col>
|
<van-col span="6" style="text-align: right;color: #769AFF;font-weight: 400;">长期医嘱</van-col>
|
</van-row>
|
<van-row class="lable">
|
<van-col span="24">
|
<span class="labletext">医嘱内容:</span>
|
<span>
|
人促红素注射液(环尔博)12gmm/dsad
|
</span>
|
</van-col>
|
</van-row>
|
<van-row class="lable">
|
<van-col span="12">
|
<span class="labletext">开嘱医生:</span>
|
<span>张三丰</span>
|
</van-col>
|
<van-col span="12">
|
<span class="labletext">开嘱时间:</span>
|
<span>2022-08-01</span>
|
</van-col>
|
</van-row>
|
</van-row>
|
</div>
|
</div>
|
</div>
|
</template>
|
<script lang="ts" setup>
|
import {ref,reactive,watchEffect,watch} from 'vue'
|
import {useRouter} from 'vue-router'
|
const router=useRouter()
|
const inputValue=ref('')
|
const fanhui=()=>{
|
router.go(-1)
|
}
|
</script>
|
<style lang="scss">
|
.report{
|
background-color: #F6FAFF;
|
padding: 0;
|
.inputdiv{
|
width: 94%;
|
margin-left: 3%;
|
margin-top: 10px;
|
.input{
|
width: 100%;
|
// height: 33px;
|
border-radius: 22px;
|
border: 1px solid #DADADA;
|
// line-height: 33px;
|
}
|
}
|
}
|
.listdiv{
|
.listrow{
|
margin-top: 10px;
|
width: 94%;
|
margin-left: 3%;
|
background: #FFFFFF;
|
box-shadow: 0px 2px 4px 0px rgba(70,150,249,0.1);
|
border-radius: 8px;
|
.lable{
|
width: 90%;
|
margin-left: 5%;
|
height: 40px;
|
div{
|
height: 40px;
|
font-size: 13px;
|
font-family: PingFangSC-Regular, PingFang SC;
|
font-weight: 400;
|
color: #2A2A2A;
|
line-height: 40px;
|
border-bottom: #F1F1F2 1px solid;
|
.labletext{
|
font-weight: 400;
|
color: #777777;
|
}
|
}
|
}
|
}
|
}
|
</style>
|