update: 大屏接口

This commit is contained in:
xf
2025-08-13 10:34:30 +08:00
parent 832291570f
commit bd2d066314
3 changed files with 24 additions and 36 deletions
+8 -8
View File
@@ -526,14 +526,14 @@ export function twoRform(type) {
placeholder: '请输入',
defaultValue: '',
},
{
label: '异常标记',
field: 'abFlag',
type: 'select',
placeholder: '请选择',
options: normalTypeList,
defaultValue: type,
},
// {
// label: '异常标记',
// field: 'abFlag',
// type: 'select',
// placeholder: '请选择',
// options: normalTypeList,
// defaultValue: type,
// },
{
label: '单位',
field: 'departName',
+9 -9
View File
@@ -13,23 +13,23 @@
<div style="font-weight: bold">{{ scrollList.totalCount ? scrollList.totalCount : '--' }}</div>
</div>
<div class="item-d">
<div>心血管异常人数</div>
<div>冠脉CTA异常人数</div>
<div style="font-weight: bold; cursor: pointer; color: #22e8ff" @click="handleClickNum(1)"
>{{ scrollList.cardiovaAbCount ? scrollList.cardiovaAbCount : '--' }}</div
>
</div>
<div class="item-d">
<div>脑血管异常人数</div>
<div>头颅CTA异常人数</div>
<div style="font-weight: bold; cursor: pointer; color: #22e8ff" @click="handleClickNum(2)"
>{{ scrollList.cerebrovAbCount ? scrollList.cerebrovAbCount : '--' }}</div
>
</div>
<div class="item-d">
<div>冠状CT异常人数</div>
<div style="font-weight: bold; cursor: pointer; color: #22e8ff" @click="handleClickNum(3)"
>{{ scrollList.cctaAbCount ? scrollList.cctaAbCount : '--' }}</div
>
</div>
<!-- <div class="item-d">-->
<!-- <div>冠状CT异常人数</div>-->
<!-- <div style="font-weight: bold; cursor: pointer; color: #22e8ff" @click="handleClickNum(3)"-->
<!-- >{{ scrollList.cctaAbCount ? scrollList.cctaAbCount : '&#45;&#45;' }}人</div-->
<!-- >-->
<!-- </div>-->
<!-- </vue3-seamless-scroll>-->
</template>
<template v-else>
@@ -117,7 +117,7 @@
overflow: hidden;
.item-d {
//background: pink;
height: 40px;
height: calc(100% / 3);
line-height: 40px;
display: flex;
font-size: 14px;
+7 -19
View File
@@ -16,9 +16,7 @@
<div class="content-item-clock">
<div>
<span class="clock-text">今日打卡人数</span>
<span class="clock-num1" @click="handleClickNum1(1, 1, 1)"
>{{ twoRList?.weightLossCountDay ? twoRList?.weightLossCountDay : '--' }}</span
>
<span class="clock-num1">{{ twoRList?.weightLossCountDay ? twoRList?.weightLossCountDay : '--' }}</span>
</div>
<div>
<span class="clock-text">异常人数</span>
@@ -30,9 +28,7 @@
<div class="content-item-clock" style="margin-bottom: 0">
<div>
<span class="clock-text">本月打卡人数</span>
<span class="clock-num1" @click="handleClickNum1(1, 2, 1)"
>{{ twoRList?.weightLossCountMonth ? twoRList?.weightLossCountMonth : '--' }}</span
>
<span class="clock-num1">{{ twoRList?.weightLossCountMonth ? twoRList?.weightLossCountMonth : '--' }}</span>
</div>
<div>
<span class="clock-text">异常人数</span>
@@ -54,9 +50,7 @@
<div class="content-item-clock">
<div>
<span class="clock-text">今日打卡人数</span>
<span class="clock-num1" @click="handleClickNum1(2, 1, 1)"
>{{ twoRList?.bloodSugarCountDay ? twoRList?.bloodSugarCountDay : '--' }}</span
>
<span class="clock-num1">{{ twoRList?.bloodSugarCountDay ? twoRList?.bloodSugarCountDay : '--' }}</span>
</div>
<div>
<span class="clock-text">异常人数</span>
@@ -68,9 +62,7 @@
<div class="content-item-clock" style="margin-bottom: 0">
<div>
<span class="clock-text">本月打卡人数</span>
<span class="clock-num1" @click="handleClickNum1(2, 2, 1)"
>{{ twoRList?.bloodSugarCountMonth ? twoRList?.bloodSugarCountMonth : '--' }}</span
>
<span class="clock-num1">{{ twoRList?.bloodSugarCountMonth ? twoRList?.bloodSugarCountMonth : '--' }}</span>
</div>
<div>
<span class="clock-text">异常人数</span>
@@ -92,9 +84,7 @@
<div class="content-item-clock">
<div>
<span class="clock-text">今日打卡人数</span>
<span class="clock-num1" @click="handleClickNum1(3, 1, 1)"
>{{ twoRList?.bloodPressureCountDay ? twoRList?.bloodPressureCountDay : '--' }}</span
>
<span class="clock-num1">{{ twoRList?.bloodPressureCountDay ? twoRList?.bloodPressureCountDay : '--' }}</span>
</div>
<div>
<span class="clock-text">异常人数</span>
@@ -106,9 +96,7 @@
<div class="content-item-clock" style="margin-bottom: 0">
<div>
<span class="clock-text">本月打卡人数</span>
<span class="clock-num1" @click="handleClickNum1(3, 2, 1)"
>{{ twoRList?.bloodPressureCountMonth ? twoRList?.bloodPressureCountMonth : '--' }}</span
>
<span class="clock-num1">{{ twoRList?.bloodPressureCountMonth ? twoRList?.bloodPressureCountMonth : '--' }}</span>
</div>
<div>
<span class="clock-text">异常人数</span>
@@ -239,12 +227,12 @@
.clock-num1,
.clock-num2 {
font-size: 16px;
cursor: pointer;
}
.clock-num1 {
color: #22e8ff;
}
.clock-num2 {
cursor: pointer;
color: #f24439;
}
}