修改监控中心样式
This commit is contained in:
@@ -104,6 +104,8 @@
|
||||
} else {
|
||||
treeRef.value.getSelectAnalyse(activeKey.value);
|
||||
}
|
||||
isGraph.value = true;
|
||||
iconName.value = 'biaoge1';
|
||||
};
|
||||
|
||||
function change() {
|
||||
|
@@ -131,6 +131,8 @@
|
||||
import { device, group } from '/@/api/deviceManage';
|
||||
import { energyMonitor } from '/@/api/monitor';
|
||||
import { dict, getEnum } from '/@/api';
|
||||
// 全局变量
|
||||
import { items } from '/@/store/item';
|
||||
|
||||
export default defineComponent({
|
||||
// eslint-disable-next-line vue/multi-word-component-names
|
||||
@@ -139,6 +141,9 @@
|
||||
const select = ref<HTMLElement | null>(null);
|
||||
const divWidth = ref(0); // 用于存储 div 的宽度
|
||||
|
||||
// 全局变量
|
||||
const state = items();
|
||||
|
||||
// 获取 div 的宽度
|
||||
// const getDivWidth = () => {
|
||||
// if (select.value) {
|
||||
@@ -311,6 +316,8 @@
|
||||
};
|
||||
|
||||
const getSelectGraph = (key: any) => {
|
||||
// 开
|
||||
state.setLoading(true);
|
||||
if (key) {
|
||||
activeKey.value = key;
|
||||
// if (
|
||||
@@ -407,9 +414,15 @@
|
||||
pageData.graphTableColumns = [];
|
||||
pageData.graphGraphList = [];
|
||||
}
|
||||
})
|
||||
.finally(() => {
|
||||
// 关
|
||||
state.setLoading(false);
|
||||
});
|
||||
};
|
||||
const getSelectAnalyse = (key: any) => {
|
||||
// 开
|
||||
state.setLoading(true);
|
||||
if (key) {
|
||||
activeKey.value = key;
|
||||
// if (pageData.analysisGraphList.length > 0 && pageData.analysisTableList.length > 0) {
|
||||
@@ -480,6 +493,12 @@
|
||||
pageData.analysisTableList = [];
|
||||
pageData.analysisGraphList = [];
|
||||
}
|
||||
})
|
||||
.finally(() => {
|
||||
// 关
|
||||
setTimeout(function () {
|
||||
state.setLoading(false);
|
||||
}, 2000);
|
||||
});
|
||||
};
|
||||
|
||||
|
@@ -29,7 +29,7 @@
|
||||
|
||||
<aggregate-data ref="aggregateDataRef" v-if="activeKey == '1'" style="height: 85%" />
|
||||
<history-data ref="historyDataRef" v-if="activeKey == '2'" style="height: 90%" />
|
||||
<average-data ref="averageDataRef" v-if="activeKey == '3'" style="height: 85%" />
|
||||
<average-data ref="averageDataRef" v-if="activeKey == '3'" style="height: 90%" />
|
||||
</div>
|
||||
|
||||
<a-modal
|
||||
|
Reference in New Issue
Block a user