| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377 |
- <template>
- <div class="dcs_tanks">
- <!-- 固定头部 -->
- <div class="fixed-header" ref="fixedHeader">
- <HeaderComponent title="硫酸钠 - 控制页面" backTo="/controlPage/flowSelect" />
- <PageNav :items="navItems" :currentCode="flowCode" />
- <PageSwitcher />
- </div>
- <!-- 主内容区 -->
- <div class="main-container">
- <div class="main-content">
- <!-- 设备区域 -->
- <div class="content-area">
- <div v-if="isLoading" class="loading">正在加载设备数据...</div>
- <div v-if="hasError" class="error">
- <p>加载数据失败: {{ errorMessage }}</p>
- <button @click="loadInitialData">重试</button>
- </div>
- <div v-else class="tanks_container">
- <div v-for="(equipments, tankName) in deviceConfigGroup" :key="tankName" class="tank_section"
- :id="`tank-${tankName}`">
- <h2 class="tank_title">{{ tankName }}</h2>
- <div class="equipment_grid">
- <PumpControlComponent v-if="tankName === '1#反应釜-C3001'" title="原矿进料"
- :dataArr="[5, 100, 100]" id="equipment-special-pump" class="equipment_item" />
- <WorkModeControl v-if="tankName === '兑卤器低位槽-V3001'" class="equipment_item" />
- <component v-for="equipment in equipments" :key="equipment.code"
- :is="getComponentByType(equipment.equipmentType)"
- :title="equipment.title + '-' + equipment.equipmentName" :code="equipment.code"
- :dataArr="getValueByCode(tankName, equipment.code)"
- :id="`equipment-${equipment.code}`" class="equipment_item" />
- </div>
- </div>
- <div v-if="isEmptyData" class="no_data">未获取到设备数据</div>
- </div>
- </div>
- <!-- 右侧导航 -->
- <TankNavigation :tanks="allTanks" :current-index="currentNavIndex" :header-height="headerHeight"
- @tankClick="scrollToTank" @scrollPositionChange="handleScrollPositionChange" />
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, onMounted, onBeforeUnmount, watch, watchEffect, computed } from 'vue';
- import { useRoute } from 'vue-router';
- import HeaderComponent from '@/components/DCS/HeaderComponent.vue';
- import PageNav from '@/components/GeneralComponents/control/PageNavComponent.vue';
- import SensorControl from '@/components/GeneralComponents/control/SensorControl2Component.vue';
- import PumpControlComponent from '@/components/GeneralComponents/control/PumpControl2Component.vue';
- import ValveControlComponent from '@/components/GeneralComponents/control/ValveControl2Component.vue';
- import WorkModeControl from '@/components/GeneralComponents/control/WorkModeControl2Component.vue';
- import TankNavigation from '@/components/GeneralComponents/control/TankNavigationComponent.vue';
- import { getPageEquipmentGroupByTankByFlowCode } from '@/api/hnyz/equipment';
- import { useEquipmentLayout } from '@/hooks/useEquipmentLayout';
- import { stompClient } from '@/utils/ws/stompClient';
- import { updateZTPageConfig } from '@/api/dcs/configurePage';
- import { getFlowNav } from '@/api/hnyz/flow';
- const route = useRoute();
- const flowCode = computed(() => route.params.flowCode);
- const navItems = ref();
- const isLoading = ref(true);
- const hasError = ref(false);
- const errorMessage = ref('');
- const isEmptyData = ref(false);
- const fixedHeader = ref(null);
- const headerHeight = ref(0);
- const allTanks = ref([]);
- const currentNavIndex = ref(-1);
- const deviceConfigGroup = ref({});
- const deviceDataGroup = ref({});
- const pageParams = ref({});
- const { generatePageParams } = useEquipmentLayout();
- // 监控路由变化
- watch(() => route.params.flowCode, loadInitialData);
- // 生成导航罐体列表
- watchEffect(() => {
- allTanks.value = Object.keys(deviceConfigGroup.value).map(tankName => ({
- uniqueId: `tank-${tankName}`,
- tankName,
- shortName: tankName.length > 18 ? tankName.slice(0, 16) + '...' : tankName
- }));
- currentNavIndex.value = -1;
- });
- // 计算固定头部高度
- const calculateHeaderHeight = () => { headerHeight.value = fixedHeader.value?.offsetHeight || 0; }
- // 加载初始数据
- async function loadInitialData() {
- try {
- isLoading.value = true; hasError.value = false; errorMessage.value = '';
- const res = await getPageEquipmentGroupByTankByFlowCode(flowCode.value);
- deviceConfigGroup.value = Object.fromEntries(
- Object.entries(res.data || {}).filter(([_, eqs]) => eqs?.length)
- );
- isEmptyData.value = !Object.keys(deviceConfigGroup.value).length;
- pageParams.value = generatePageParams(deviceConfigGroup.value);
- await updatePageConfig();
- } catch (err) {
- hasError.value = true;
- errorMessage.value = err.message || '加载设备分组失败';
- } finally {
- isLoading.value = false;
- }
- }
- // 更新页面配置并订阅 WebSocket
- async function updatePageConfig() {
- try {
- await updateZTPageConfig(flowCode.value, pageParams.value);
- stompClient.unsubscribeFromPage(flowCode.value);
- stompClient.subscribeToPage(flowCode.value, data => {
- if (!data) return;
- try {
- for (const key in data) { deviceDataGroup.value[key] = data[key] || []; }
- } catch (err) {
- console.error('更新设备数据失败:', err);
- }
- });
- } catch (err) { console.error('页面配置失败:', err); }
- }
- // 根据设备类型返回组件
- function getComponentByType(equipmentType) {
- const type = Number(equipmentType);
- if ([1, 5].includes(type)) return ValveControlComponent;
- if (type === 2) return PumpControlComponent;
- if (type === 4) return SensorControl;
- return 'div';
- }
- // 根据罐体名和 code 获取设备数据
- function getValueByCode(tankName, code) {
- const arr = deviceDataGroup.value[tankName] || [];
- const item = arr.find(i => i.code === code);
- return item ? item.value : [];
- }
- // 导航滚动
- function scrollToTank(tank, index) {
- currentNavIndex.value = index;
- const el = document.getElementById(`tank-${tank.tankName}`);
- if (!el) return;
- window.scrollTo({ top: el.offsetTop - headerHeight.value - 20, behavior: 'smooth' });
- }
- function handleScrollPositionChange(index) { currentNavIndex.value = index; }
- onMounted(async () => {
- const res = await getFlowNav('Na2SO4', 'flowSelect');
- navItems.value = res.data;
- calculateHeaderHeight();
- window.addEventListener('resize', calculateHeaderHeight);
- loadInitialData();
- });
- onBeforeUnmount(() => {
- stompClient.unsubscribeFromPage(flowCode.value);
- window.removeEventListener('resize', calculateHeaderHeight);
- });
- </script>
- <style scoped lang="scss">
- .dcs_tanks {
- width: 100%;
- min-height: 100vh;
- background-color: #141414;
- box-sizing: border-box;
- }
- // 固定在顶部的头部区域
- .fixed-header {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 1000;
- background-color: #141414;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
- }
- // 主容器 - 添加顶部内边距,避免被固定头部遮挡
- .main-container {
- padding: 140px 32px 24px;
- box-sizing: border-box;
- }
- // 主内容区布局
- .main-content {
- display: flex;
- gap: 20px;
- width: 100%;
- max-width: 1600px;
- margin: 0 auto;
- }
- .content-area {
- flex: 1;
- }
- // 罐体容器
- .tanks_container {
- display: flex;
- flex-direction: column;
- gap: 30px;
- width: 100%;
- }
- // 每个罐体区域
- .tank_section {
- background: #1a1a1a;
- border-radius: 12px;
- padding: 20px 24px;
- width: 100%;
- display: flex;
- flex-direction: column;
- gap: 20px;
- box-sizing: border-box;
- scroll-margin-top: 160px;
- /* 用于滚动定位时预留空间 */
- }
- .tank_title {
- font-size: 20px;
- color: #fff;
- padding-bottom: 12px;
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
- text-align: center;
- margin: 0;
- }
- // 设备网格布局
- .equipment_grid {
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- /* 默认4列布局 */
- gap: 24px;
- /* 增大间距避免拥挤 */
- padding: 12px 0;
- }
- // 统一设备项样式
- .equipment_item {
- min-height: 200px;
- /* 固定最小高度,确保排列整齐 */
- padding: 16px;
- background-color: rgba(30, 30, 30, 0.9);
- border-radius: 8px;
- border: 1px solid rgba(114, 224, 255, 0.15);
- box-sizing: border-box;
- }
- /* 确保子组件正确填充容器 */
- :deep(.equipment_item) {
- width: 100%;
- height: 100%;
- .title {
- margin-bottom: 16px;
- padding-bottom: 8px;
- border-bottom: 1px solid rgba(255, 255, 255, 0.05);
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- /* 无数据提示样式 */
- .no_data {
- color: white;
- margin-top: 20px;
- padding: 20px;
- border-radius: 8px;
- background-color: rgba(255, 255, 255, 0.1);
- width: 100%;
- text-align: center;
- }
- /* 状态提示样式 */
- .loading,
- .error {
- color: white;
- margin-top: 20px;
- padding: 20px;
- border-radius: 8px;
- background-color: rgba(255, 255, 255, 0.1);
- width: 100%;
- text-align: center;
- }
- .error {
- color: #ff4444;
- button {
- margin-top: 10px;
- padding: 8px 16px;
- background-color: #00C851;
- color: white;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- transition: background-color 0.2s;
- &:hover {
- background-color: #007E33;
- }
- }
- }
- /* 响应式布局 */
- @media (max-width: 1400px) {
- .equipment_grid {
- grid-template-columns: repeat(3, 1fr);
- gap: 20px;
- }
- }
- @media (max-width: 1200px) {
- .main-container {
- padding: 140px 20px 16px;
- }
- .main-content {
- max-width: 100%;
- }
- .equipment_grid {
- grid-template-columns: repeat(3, 1fr);
- gap: 18px;
- }
- }
- @media (max-width: 992px) {
- .main-content {
- flex-direction: column;
- }
- .equipment_grid {
- grid-template-columns: repeat(2, 1fr);
- gap: 16px;
- }
- }
- @media (max-width: 768px) {
- .main-container {
- padding: 120px 16px 16px;
- }
- .equipment_grid {
- grid-template-columns: 1fr;
- gap: 14px;
- }
- .tank_section {
- padding: 16px 18px;
- gap: 16px; scroll-margin-top: 140px;
- }
- .equipment_item {
- min-height: 180px;
- }
- }
- </style>
|