postdischarge-ui/src/views/manage/components/cardlist.vue

200 lines
5.5 KiB
Vue
Raw Normal View History

2024-08-01 15:19:05 +08:00
<template>
<div :style="{ height: maxTableHeight + 'px' }" class="cardlist">
<div v-for="item in patientInfoList" :key="item.id">
<div class="carditem">
<div class="top">
<img src="../../../assets/manage/nvtouxiang.png" alt="" class="img" />
<!-- <img src="../../../assets/manage/touxiang.png" alt="" class="img" /> -->
2024-08-01 16:18:16 +08:00
<div class="name">
张三
</div>
<div class="agesex">
<span style="padding: 0 3px;">|</span>
64
<!-- <span class="zy">在院</span> -->
<span class="cy">出院</span>
</div>
<div class="diagnosis">
诊断名称
</div>
</div>
<div class="bottom">
<div class="formitem">
医生李四
</div>
<div class="formitem">
科室心血管内科
</div>
<div class="formitem">
就诊时间2024-06-27
</div>
<div class="formitem flex">
<span>
康复计划执行率
</span>
<el-progress :percentage="0" :format="format"></el-progress>
</div>
<div class="formitem flex">
<span>
康复计划完成率
</span>
<el-progress :percentage="100" :format="format"></el-progress>
</div>
<div class="formitem">
下次任务
</div>
2024-08-01 15:19:05 +08:00
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'cardlist',
props: {
maxTableHeight: {
type: Number,
default: 0,
},
patientInfoList: {
type: Array,
default: []
}
},
data() {
return {
}
},
mounted() {
},
2024-08-01 16:18:16 +08:00
methods: {
format(percentage) {
return percentage === 100 ? `${percentage}%(3/3)` : `${percentage}%(3/3)`;
}
}
2024-08-01 15:19:05 +08:00
}
</script>
<style lang="scss" scoped>
.cardlist {
display: flex;
flex-wrap: wrap;
align-content: flex-start;
overflow-y: auto;
.carditem {
margin-right: 10px;
margin-bottom: 10px;
width: 260px;
min-height: 200px;
border: 1px solid #DCDFE6;
border-radius: 10px;
2024-08-01 16:18:16 +08:00
font-size: 14px;
font-weight: 600;
.bottom {
height: 160px;
padding: 0 6px;
.formitem {
height: 26px;
line-height: 26px;
font-size: 12px;
color: #756A5E;
font-weight: 550;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
overflow: hidden;
}
.flex {
display: flex;
align-items: center;
::v-deep .el-progress-bar {
flex: 1;
}
::v-deep .el-progress__text {
font-size: 12px !important;
flex: 0.8;
text-align: right;
}
span {
flex: 0.8;
max-width: 50%;
}
::v-deep .el-progress {
flex: 1;
display: flex;
align-items: center;
}
}
}
2024-08-01 15:19:05 +08:00
.top {
2024-08-01 16:18:16 +08:00
height: 100px;
2024-08-01 15:19:05 +08:00
background-color: #F7F8FA;
2024-08-01 16:18:16 +08:00
position: relative;
border-radius: 10px 10px 0 0;
.img {
margin: 10px 0 0 10px;
width: 50px;
height: 50px;
}
.agesex {
position: absolute;
right: 10px;
top: 16px;
2024-08-01 15:19:05 +08:00
2024-08-01 16:18:16 +08:00
// 在院
.zy {
background-color: #DEEDF4;
color: #1D98C6;
border: 1.5px solid #1D98C6;
border-radius: 2px;
padding: 3px 5px;
margin-left: 4px;
}
// 出院
.cy {
background-color: #DEEFEE;
color: #2A9A82;
border: 1.5px solid #2A9A82;
border-radius: 2px;
padding: 3px 5px;
margin-left: 4px;
}
}
.diagnosis {
position: absolute;
color: #756A5E;
font-weight: 550;
left: 70px;
top: 42px;
font-size: 12px;
height: 48px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
padding-right: 4px;
}
.name {
position: absolute;
left: 70px;
top: 16px;
}
2024-08-01 15:19:05 +08:00
}
2024-08-01 16:18:16 +08:00
2024-08-01 15:19:05 +08:00
}
}
</style>