133 lines
3.2 KiB
Vue
133 lines
3.2 KiB
Vue
|
|
<!-- SidePanelItem.vue -->
|
||
|
|
<template>
|
||
|
|
<SidePanelItem title="水生生态调查情况" :select="select" :datetimePicker="datetimePicker">
|
||
|
|
<div class="facility-grid">
|
||
|
|
<div v-for="facility in facilities" :key="facility.name" class="facility-card">
|
||
|
|
<div style="width: 60px;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: 16px;"> <span class="facility-count">{{ facility.count
|
||
|
|
}}</span><span>个</span></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</SidePanelItem>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import { ref, onMounted, onUnmounted, nextTick } from 'vue';
|
||
|
|
import * as echarts from 'echarts';
|
||
|
|
import type { EChartsOption } from 'echarts';
|
||
|
|
import SidePanelItem from '@/components/SidePanelItem/index.vue';
|
||
|
|
|
||
|
|
// 定义组件名
|
||
|
|
defineOptions({
|
||
|
|
name: 'shuishengshengtaijiance'
|
||
|
|
});
|
||
|
|
|
||
|
|
// ==================== 响应式变量定义 ====================// 选择器配置
|
||
|
|
const select = ref({
|
||
|
|
show: true,
|
||
|
|
value: undefined,
|
||
|
|
options: [],
|
||
|
|
picker: undefined,
|
||
|
|
format: undefined
|
||
|
|
});
|
||
|
|
|
||
|
|
// 日期选择器配置
|
||
|
|
const datetimePicker = ref({
|
||
|
|
show: true,
|
||
|
|
value: `${new Date().getFullYear()}`,
|
||
|
|
format: 'YYYY',
|
||
|
|
picker: 'year' as const,
|
||
|
|
options: []
|
||
|
|
});
|
||
|
|
|
||
|
|
const facilities = ref([
|
||
|
|
{
|
||
|
|
name: '红外相机数量',
|
||
|
|
count: 31,
|
||
|
|
icon: 'icon iconfont icon-shipinjiankongshebei'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: '重点陆生动物',
|
||
|
|
count: 24,
|
||
|
|
icon: 'icon iconfont icon-dongwujiuzhuzhan'
|
||
|
|
},
|
||
|
|
|
||
|
|
]);
|
||
|
|
// ==================== 生命周期钩子 ====================
|
||
|
|
|
||
|
|
// 页面加载时执行
|
||
|
|
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: 64px;
|
||
|
|
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: #2f6b98;
|
||
|
|
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>
|