|
@@ -5,13 +5,12 @@
|
5
|
5
|
<!-- <router-link :to="{path:'/details', query: {patient_id: patient.patient_id, date: patient.schedule_date}}"> -->
|
6
|
6
|
<div class="kehu">
|
7
|
7
|
|
8
|
|
- <div class="tx">
|
|
8
|
+ <div style="position: relative;" class="tx">
|
9
|
9
|
<img :src="patient.patient.avatar.length > 0 ? patient.patient.avatar : '../../assets/product/test.jpg'"
|
10
|
10
|
alt="">
|
11
|
|
- <span class="redpoint" v-if="getStatus(patient)">{{getUnReadNum(patient) > 99?getUnReadNum(patient)+"+":getUnReadNum(patient)}}
|
12
|
|
- </span>
|
|
11
|
+ <span class="redpoint" v-if="getStatus(patient)">{{getUnReadNum(patient) > 99?getUnReadNum(patient)+"+":getUnReadNum(patient)}}</span>
|
13
|
12
|
<div class="right">
|
14
|
|
- <h3 class="name">{{patient.patient.name}}<span class="yc" v-show="isAbnormal(patient)">异常</span></h3>
|
|
13
|
+ <h3 class="name">{{patient.patient.name}}<span class="el-icon-bell yztx" v-if="getStatus(patient)"> 医嘱</span> <span class="yc" v-show="isAbnormal(patient)">异常</span></h3>
|
15
|
14
|
<span class="num">{{ genderText(patient) }} | {{ age(patient) }}岁</span>
|
16
|
15
|
<!-- 性别、年龄 -->
|
17
|
16
|
|
|
@@ -337,17 +336,25 @@
|
337
|
336
|
}
|
338
|
337
|
.redpoint{
|
339
|
338
|
display:inline-block;
|
340
|
|
- height:16px;
|
341
|
|
- width:16px;
|
342
|
|
- line-height:16px;
|
|
339
|
+ height:20px;
|
|
340
|
+ width:20px;
|
|
341
|
+ line-height:18px;
|
343
|
342
|
text-align:center;
|
344
|
|
- font-size:0.1em;
|
345
|
|
- border-radius:16px;
|
|
343
|
+ font-size:0.8em;
|
|
344
|
+ border-radius:20px;
|
346
|
345
|
color:#fff;
|
347
|
346
|
background:red;
|
348
|
|
- position: relative;
|
|
347
|
+ position: absolute;
|
349
|
348
|
top: -8px;
|
350
|
|
- right: 8px;
|
|
349
|
+ left: 0.7rem;
|
|
350
|
+ border:1px solid #fff;
|
|
351
|
+ }
|
|
352
|
+ .yztx{
|
|
353
|
+ margin: 0 15px;
|
|
354
|
+ padding: 5px 15px;
|
|
355
|
+ background-color: red;
|
|
356
|
+ color: #fff;
|
|
357
|
+ border-radius: 15px;
|
351
|
358
|
}
|
352
|
359
|
</style>
|
353
|
360
|
|