106 lines
2.6 KiB
Vue
106 lines
2.6 KiB
Vue
|
|
<!-- SidePanelItem.vue -->
|
||
|
|
<template>
|
||
|
|
<SidePanelItem title="水温监测工作开展情况">
|
||
|
|
<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 } from 'vue';
|
||
|
|
import SidePanelItem from '@/components/SidePanelItem/index.vue';
|
||
|
|
|
||
|
|
// 定义组件名(便于调试和递归)
|
||
|
|
defineOptions({
|
||
|
|
name: 'shuiwenjiancegongzuokaizhangqingkuang'
|
||
|
|
});
|
||
|
|
|
||
|
|
// 设施数据
|
||
|
|
const facilities = ref([
|
||
|
|
{
|
||
|
|
name: '表层水温',
|
||
|
|
count: 145,
|
||
|
|
icon: 'icon iconfont icon-shuizhijiancezhan'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: '垂向水温',
|
||
|
|
count: 24,
|
||
|
|
icon: 'icon iconfont icon-diwenshuijianhuan'
|
||
|
|
},
|
||
|
|
]);
|
||
|
|
|
||
|
|
// 页面加载时执行的逻辑
|
||
|
|
onMounted(() => {
|
||
|
|
|
||
|
|
});
|
||
|
|
</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>
|