parent
4dabcb080e
commit
d5a2dda1b5
@ -0,0 +1,48 @@
|
|||||||
|
/*
|
||||||
|
* @Author: chris
|
||||||
|
* @Date: 2025-10-31 16:52:46
|
||||||
|
* @LastEditors: chris
|
||||||
|
* @LastEditTime: 2025-10-31 16:55:51
|
||||||
|
*/
|
||||||
|
export const typeDict = {
|
||||||
|
// 类型 1: 虫情检测 2:土壤墒情监测 3:气象视频监测
|
||||||
|
1: {
|
||||||
|
icon: "carbon:pest",
|
||||||
|
title: "虫情检测设备",
|
||||||
|
color: "#b47a3e",
|
||||||
|
span: 3,
|
||||||
|
},
|
||||||
|
2: {
|
||||||
|
icon: "carbon:soil-moisture",
|
||||||
|
title: "墒情监测设备",
|
||||||
|
color: "#45969f",
|
||||||
|
span: 3,
|
||||||
|
},
|
||||||
|
3: {
|
||||||
|
icon: "carbon:radar-weather",
|
||||||
|
title: "气象监测设备",
|
||||||
|
color: "#396a78",
|
||||||
|
span: 3,
|
||||||
|
},
|
||||||
|
4: {
|
||||||
|
icon: "carbon:camera",
|
||||||
|
title: "监控设备",
|
||||||
|
color: "#233c62",
|
||||||
|
span: 3,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export const statusDict = {
|
||||||
|
1: {
|
||||||
|
icon: "carbon:link",
|
||||||
|
color: "#3aa534",
|
||||||
|
title: "在线设备",
|
||||||
|
span: 3,
|
||||||
|
},
|
||||||
|
0: {
|
||||||
|
icon: "carbon:unlink",
|
||||||
|
color: "#808890",
|
||||||
|
title: "离线设备",
|
||||||
|
span: 3,
|
||||||
|
},
|
||||||
|
};
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: chris
|
||||||
|
* @Date: 2025-11-05 11:26:45
|
||||||
|
* @LastEditors: chris
|
||||||
|
* @LastEditTime: 2025-11-14 09:51:19
|
||||||
|
-->
|
||||||
|
<script>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="ai-expert">
|
||||||
|
AI专家
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue