DigitalDashBoard.vue
3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<script lang="ts" setup>
import { computed, unref } from 'vue';
import { Space, Tooltip } from 'ant-design-vue';
import {
DigitalComponentDefaultConfig,
DigitalDashBoardLayout,
DigitalDashBoardValue,
} from './digitalDashBoard.config';
import { dateUtil } from '/@/utils/dateUtil';
import {
fontSize,
RadioRecord,
DEFAULT_DATE_FORMAT,
DEFAULT_RADIO_RECORD,
} from '../../detail/config/util';
import { isNaN } from 'lodash';
const props = defineProps<{
layout: DigitalDashBoardLayout;
value: DigitalDashBoardValue;
radio?: RadioRecord;
}>();
const getPropsValue = computed(() => {
return { ...DigitalComponentDefaultConfig, ...props.value };
});
const integerPart = computed(() => {
let { value = 0 } = unref(getPropsValue);
const { max = 5 } = props.layout;
if (isNaN(value)) value = 0;
let _value = Number(value).toFixed(2).split('.')[0];
if (_value.length < max) _value = _value.padStart(5, '0');
if (_value.length > max) _value = ''.padStart(5, '9');
return _value;
});
const decimalPart = computed(() => {
let { value = 0 } = unref(getPropsValue);
const { keepNumber = 2 } = props.layout;
if (isNaN(value)) value = 0;
let _value = Number(value)?.toFixed(2).split('.')[1];
if (_value.length < keepNumber) _value = _value.padStart(5, '0');
if (_value.length > keepNumber) _value = ''.padStart(5, '0');
return _value;
});
const getRadio = computed(() => {
const { radio } = props.radio || DEFAULT_RADIO_RECORD;
return radio;
});
</script>
<template>
<section class="w-full h-full">
<div class="flex flex-col w-full h-full">
<div class="flex-1 flex justify-center items-center">
<div class="flex flex-col">
<Space justify="end" class="justify-end" :size="getRadio * 15">
<div
v-for="number in integerPart"
:key="number"
class="border border-gray-400 p-2"
:style="{
color: getPropsValue.fontColor,
fontSize: fontSize({ radio: getRadio, basic: 20 }),
}"
>
{{ number }}
</div>
</Space>
<Space justify="end" class="justify-end mt-2" :size="getRadio * 15">
<div
v-for="number in decimalPart"
:key="number"
class="border border-gray-400 p-1"
:style="{
color: getPropsValue.fontColor,
fontSize: fontSize({ radio: getRadio, basic: 18 }),
}"
>
{{ number }}
</div>
</Space>
</div>
</div>
<div
class="text-center truncate"
:style="{ fontSize: fontSize({ radio: getRadio, basic: 18 }) }"
>
<span>{{ props.value.name || '电表' }}</span>
<span class="px-1">({{ getPropsValue.unit }})</span>
</div>
<div
class="text-center mt-1 text-gray-400 text-xs truncate"
:style="{ fontSize: fontSize({ radio: getRadio, basic: 12, max: 16 }) }"
>
<Tooltip
placement="topLeft"
:title="dateUtil(props?.value?.updateTime || new Date()).format(DEFAULT_DATE_FORMAT)"
>
<span class="mr-1">更新时间:</span>
<span>
{{ dateUtil(props?.value?.updateTime || new Date()).format(DEFAULT_DATE_FORMAT) }}
</span>
</Tooltip>
</div>
</div>
<div></div>
</section>
</template>