121 lines
2.9 KiB
Vue
121 lines
2.9 KiB
Vue
|
|
<!-- SidePanelItem.vue -->
|
||
|
|
<template>
|
||
|
|
<SidePanelItem title="AI识别大坝环境" :datetimePicker="datetimePicker">
|
||
|
|
<div class="facility-grid">
|
||
|
|
<div v-for="facility in facilities" :key="facility.name" class="facility-card">
|
||
|
|
<div style="width: 70px;height: 62px;display: flex;align-items: center;justify-content: center;">
|
||
|
|
<div class="facility-icon">
|
||
|
|
<i style="color: #fff;" :class="facility.icon" type="icon-shengtailiuliang2"></i>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="facility-info">
|
||
|
|
<div class="facility-name">{{ facility.name }}</div>
|
||
|
|
<div style="font-size: 14px;"> <span class="facility-count">{{ facility.count }}</span>
|
||
|
|
<span>次</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</SidePanelItem>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import { ref, onMounted, onUnmounted, watch, nextTick } from 'vue';
|
||
|
|
import SidePanelItem from '@/components/SidePanelItem/index.vue';
|
||
|
|
|
||
|
|
// 定义组件名(便于调试和递归)
|
||
|
|
defineOptions({
|
||
|
|
name: 'zengzhizhanjiansheyunxing'
|
||
|
|
});
|
||
|
|
const datetimePicker = ref({
|
||
|
|
show: true,
|
||
|
|
value: `${new Date().getFullYear() - 1}`, // 上一年
|
||
|
|
format: 'YYYY-MM',
|
||
|
|
picker: 'month' as const,
|
||
|
|
options: []
|
||
|
|
});
|
||
|
|
// 设施数据
|
||
|
|
const facilities = ref([
|
||
|
|
{
|
||
|
|
name: '漂浮物识别',
|
||
|
|
count: "34",
|
||
|
|
icon: 'icon iconfont icon-piaofuwu'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: '叠梁门运行识别',
|
||
|
|
count: '0',
|
||
|
|
icon: 'icon iconfont icon-dieliangmen1'
|
||
|
|
},
|
||
|
|
|
||
|
|
]);
|
||
|
|
|
||
|
|
// 页面加载时执行
|
||
|
|
onMounted(() => {
|
||
|
|
// 延迟初始化,确保容器已渲染
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
// 组件卸载时清理
|
||
|
|
onUnmounted(() => {
|
||
|
|
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.facility-grid {
|
||
|
|
width: 406px;
|
||
|
|
flex-flow: wrap;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
||
|
|
}
|
||
|
|
|
||
|
|
.facility-card {
|
||
|
|
width: 200px;
|
||
|
|
height: 70px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin: 4px 0px;
|
||
|
|
background: #fff;
|
||
|
|
border: 1px solid #e8e8e8;
|
||
|
|
border-radius: 2px;
|
||
|
|
transition: all 0.3s;
|
||
|
|
cursor: pointer;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.facility-icon {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
width: 40px;
|
||
|
|
height: 40px;
|
||
|
|
// margin-right: 8px;
|
||
|
|
background: rgb(47, 107, 152);
|
||
|
|
border-radius: 50%;
|
||
|
|
|
||
|
|
.anticon {
|
||
|
|
font-size: 24px;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.facility-info {
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.facility-name {
|
||
|
|
font-size: 16px;
|
||
|
|
color: #333;
|
||
|
|
// margin-bottom: 4px;
|
||
|
|
// font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.facility-count {
|
||
|
|
font-size: 18px;
|
||
|
|
color: #2f6b98;
|
||
|
|
// font-weight: 600;
|
||
|
|
}
|
||
|
|
</style>
|