index.vue
3.58 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
116
117
118
119
120
121
122
123
124
125
126
127
128
<script lang="ts" setup>
import { option } from './config';
// import { useComponentScale } from '/@/views/visual/packages/hook/useComponentScale';
import { ComponentPropsConfigType, MultipleDataFetchUpdateFn } from '../../../index.type';
import { useMultipleDataFetch } from '/@/views/visual/packages/hook/useSocket';
import { computed } from 'vue';
import { ref } from 'vue';
import { Progress } from 'ant-design-vue';
import { DeviceName } from '/@/views/visual/commonComponents/DeviceName';
import { unref } from 'vue';
import { onMounted } from 'vue';
const props = defineProps<{
config: ComponentPropsConfigType<typeof option>;
}>();
const percentList = ref<any[]>([
{
value: 20,
fontColor: '#19eff',
backgroundColor: '#19eff',
color: '#000',
fontSize: '16px',
unit: '℃',
id: 1,
},
{
value: 66,
fontColor: '#1E8667',
backgroundColor: '#1E8667',
color: '#000',
fontSize: '16px',
unit: '℃',
id: 2,
},
{
value: 49,
fontColor: '#2196F3',
backgroundColor: '#2196F3',
color: '#000',
fontSize: '16px',
unit: '℃',
id: 3,
},
]);
const getDesign = computed(() => {
const { persetOption = {}, option } = props.config;
const { dataSource = [] } = option || {};
const {
unit: presetUnit,
fontColor: presetFontColor,
backgroundColor: persetBackgroundColor,
} = persetOption || {};
return {
dataSource: dataSource?.map((item) => {
const { unit, fontColor, fontSize, backgroundColor } = item.componentInfo || {};
const { attribute, attributeRename } = item;
return {
unit: unit ?? presetUnit,
fontColor: fontColor ?? presetFontColor,
fontSize,
backgroundColor: backgroundColor ?? persetBackgroundColor,
attribute,
attributeRename,
};
}),
};
});
const newPercentList = ref<any[]>([]);
const updateFn: MultipleDataFetchUpdateFn = (message) => {
const { data = {} } = message;
const { dataSource } = unref(getDesign);
newPercentList.value = dataSource.map((item) => {
const { attribute, fontSize, attributeRename, fontColor, unit, backgroundColor } = item;
const [latest] = data[attribute] || [];
const [_timespan, value] = latest || [];
return {
value: Number(value),
name: attributeRename ?? attribute,
fontSize,
unit,
backgroundColor: backgroundColor,
fontColor: fontColor,
};
});
// console.log(numberList, 'numberList');
};
onMounted(() => {
newPercentList.value = percentList.value;
!props.config.option.uuid;
});
useMultipleDataFetch(props, updateFn);
// const { getScale } = useComponentScale(props);
</script>
<template>
<main class="w-full h-full flex flex-col justify-center">
<DeviceName :config="config" />
<div
v-for="item in newPercentList"
:key="item.id"
class="flex flex-col ml-3 mr-3 items-stretch"
>
<div class="flex justify-between">
<div class="text-gray-500 text-lg truncate">{{ item.name || '温度' }}</div>
<span class="text-lg" :style="{ color: item.fontColor }"
>{{ item.value }} {{ item.unit }}</span
>
</div>
<div>
<Progress :strokeColor="item.backgroundColor" :percent="item.value" :showInfo="false" />
</div>
</div>
</main>
</template>
<style lang="less" scoped>
// :deep(.ant-progress-success-bg, .ant-progress-bg) {
// background: '#2196F3' !important;
// }
</style>