frontend/src/views/home/components/test.vue

frontend/src/views/home/components/timeTest.vue
This commit is contained in:
sjl
2024-12-20 10:43:43 +08:00
8 changed files with 2601 additions and 2556 deletions

View File

@@ -2,23 +2,23 @@
<template>
<div class="static">
<div class="left_tree">
<tree ref="treeRef" :updateSelectedTreeNode="getPieData || (() => {})" />
<tree ref="treeRef" :updateSelectedTreeNode="getPieData || (() => {})"/>
</div>
<!-- <span class="new_span">测试scss颜色</span> -->
<div class="right_container">
<!-- 功能选择 -->
<div class="container_function">
<div
class="function_item"
:class="
class="function_item"
:class="
item.checked ? 'function_item checked_function' : 'function_item'
"
v-for="(item, index) in tabsList"
:key="index"
@click="handleCheckFunction(item.value)"
v-for="(item, index) in tabsList"
:key="index"
@click="handleCheckFunction(item.value)"
>
<div class="item_img">
<img :src="item.img" alt="" />
<img :src="item.img" alt=""/>
</div>
<div class="item_text">
<p>{{ item.label }}</p>
@@ -26,46 +26,46 @@
</div>
</div>
<!-- <el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="检测进度展示" name="1"> -->
<div class="container_pieShow">
<!-- <el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="检测进度展示" name="1"> -->
<div class="container_pieShow">
<el-collapse model-value="1" accordion @change="handleCollapseChange">
<el-collapse-item title="&nbsp&nbsp&nbsp&nbsp&nbsp检测计划统计" name="1">
<!-- 饼图 -->
<div class="container_charts">
<div class="charts_info" ref="chartsInfoRef">
<pie
:customData="{
<el-collapse-item title="&nbsp&nbsp&nbsp&nbsp&nbsp检测计划统计" name="1">
<!-- 饼图 -->
<div class="container_charts">
<div class="charts_info" ref="chartsInfoRef">
<pie
:customData="{
title: '设备检测状态',
textAlign: 'left',
}"
:legendData="{
:legendData="{
icon: 'circle',
left: 'left',
top: 'bottom',
}"
:chartsData="chartsData1"
ref="pieRef1"
></pie>
</div>
<div class="charts_info">
<pie
:customData="{
:chartsData="chartsData1"
ref="pieRef1"
></pie>
</div>
<div class="charts_info">
<pie
:customData="{
title: '设备检测结果',
textAlign: 'left',
}"
:legendData="{
:legendData="{
icon: 'circle',
left: 'left',
top: 'bottom',
}"
:chartsData="chartsData2"
ref="pieRef2"
></pie>
</div>
<div class="charts_info">
<pie
:customData="{
:chartsData="chartsData2"
ref="pieRef2"
></pie>
</div>
<div class="charts_info">
<pie
:customData="{
title: '设备报告状态',
textAlign: 'left',
label: {
@@ -74,56 +74,52 @@
},
},
}"
:legendData="{
:legendData="{
icon: 'circle',
left: 'left',
top: 'bottom',
}"
:chartsData="chartsData3"
ref="pieRef3"
></pie>
</div>
</div>
</el-collapse-item>
:chartsData="chartsData3"
ref="pieRef3"
></pie>
</div>
</div>
</el-collapse-item>
</el-collapse>
</div>
<el-tabs class="tabs-menu" type="border-card" @tab-change="handleTabsChange" v-model="editableTabsValue" :style="{ height: tabsHeight }">
<el-tab-pane :label="tabLabel1" :style="{ height: tabPaneHeight }">
<!-- 列表数据 -->
<div class="container_table" :style="{ height: tableHeight }">
<Table ref="tableRef1" :id='currentId' :isTimeCheck = 'isTimeCheck'></Table>
</div>
</el-tab-pane>
<!-- <el-tab-pane label="已检设备" v-if="tabShow" :style="{ height: tabPaneHeight }">-->
<!-- &lt;!&ndash; 列表数据 &ndash;&gt;-->
<!-- <div class="container_table" :style="{ height: tableHeight }">-->
<!-- <Table ref="tableRef2" :id='currentId'></Table>-->
<!-- </div>-->
<!-- </el-tab-pane>-->
</el-tabs>
</div>
<el-tabs class="tabs-menu" type="border-card" @tab-change="handleTabsChange" v-model="editableTabsValue" :style="{ height: tabsHeight }">
<el-tab-pane :label="tabLabel1" :style="{ height: tabPaneHeight }">
<!-- 列表数据 -->
<div class="container_table" :style="{ height: tableHeight }">
<Table ref="tableRef1" :id='currentId' :isTimeCheck='isTimeCheck'></Table>
</div>
</el-tab-pane>
<!-- <el-tab-pane label="已检设备" v-if="tabShow" :style="{ height: tabPaneHeight }">-->
<!-- &lt;!&ndash; 列表数据 &ndash;&gt;-->
<!-- <div class="container_table" :style="{ height: tableHeight }">-->
<!-- <Table ref="tableRef2" :id='currentId'></Table>-->
<!-- </div>-->
<!-- </el-tab-pane>-->
</el-tabs>
</div>
</div>
</template>
<script lang="ts" setup>
import { getStaticTreeData } from "@/api/plan/static";
import pie from "@/components/echarts/pie/default.vue";
import { useRouter } from "vue-router";
import {useRouter} from "vue-router";
import tree from "../components/tree.vue";
import Table from "../components/table.vue";
//import { data } from "@/api/plan/static.json";
import deviceDataList from '@/api/device/device/deviceData'
import {getPlanListByPattern } from '@/api/plan/plan.ts'
import { onBeforeMount, onMounted, onUnmounted, ref, watch } from "vue";
import { useModeStore } from '@/stores/modules/mode'; // 引入模式 store
import { useDictStore } from '@/stores/modules/dict'
import { type Plan } from "@/api/plan/interface";
import type { CollapseModelValue } from "element-plus/es/components/collapse/src/collapse.mjs";
import { type Device } from "@/api/device/interface/device";
import { getBoundPqDevList } from '@/api/plan/plan.ts'
import { CENTERED_ALIGNMENT } from "element-plus/es/components/virtual-list/src/defaults";
import { ResultData } from "@/api/interface";
import {getBoundPqDevList, getPlanListByPattern} from '@/api/plan/plan.ts'
import {onBeforeMount, onUnmounted, ref, watch} from "vue";
import {useModeStore} from '@/stores/modules/mode'; // 引入模式 store
import {useDictStore} from '@/stores/modules/dict'
import {type Plan} from "@/api/plan/interface";
import type {CollapseModelValue} from "element-plus/es/components/collapse/src/collapse.mjs";
import {type Device} from "@/api/device/interface/device";
import {ResultData} from "@/api/interface";
const dictStore = useDictStore()
const modeStore = useModeStore();
@@ -143,10 +139,10 @@ const form: any = ref({
});
const router = useRouter();
const activeNames = ref(['2'])
const tabShow= ref(false);
const tabShow = ref(false);
const tabLabel1 = ref('设备检测')
const editableTabsValue = ref('0')
const checkStateTable = ref<number[]>([0,1,2])
const checkStateTable = ref<number[]>([0, 1, 2])
const tabsHeight = ref('calc(100vh - 538px)'); // 初始高度
const tabPaneHeight = ref('calc(100% - 5px)'); // 初始高度
@@ -166,8 +162,8 @@ const handleCollapseChange = (val: CollapseModelValue) => {
}
//const newtableHeight= val.length > 0 ? 'calc(100vh - 638px)' : 'calc(100vh - 433px)';
tabsHeight.value = newHeight;
tabPaneHeight.value = `calc(100% - 5px)`;
tableHeight.value = `calc(100% - 5px)`;
tabPaneHeight.value = `calc(100% - 5px)`;
tableHeight.value = `calc(100% - 5px)`;
// tableRef1.value.resize();
// tableRef2.value.resize();
@@ -220,53 +216,51 @@ const tableRef2 = ref();
const currentId = ref('');
watch(
() => form.value,
(val, oldVal) => {
if (val) {
if(form.value.activeTabs === 0 )//设备检测
() => form.value,
(val, oldVal) => {
if (val) {
if (form.value.activeTabs === 0)//设备检测
{
const tabledata = deviceData.filter((item) => item.document_State === "未归档")
tableRef1.value && tableRef1.value.changeActiveTabs(form.value.activeTabs, form.value.activeChildTabs, tabledata);
} else if (form.value.activeTabs === 4)//设备归档
{
const tabledata = deviceData.filter((item) => item.check_State === "检测完成" && item.document_State === "未归档")
tableRef1.value && tableRef1.value.changeActiveTabs(form.value.activeTabs, form.value.activeChildTabs, tabledata);
} else if (form.value.activeTabs === 3 || form.value.activeTabs === 5)//报告生成、数据查询
{
const tabledata = deviceData.filter((item) => item.check_State === "检测完成");
tableRef1.value && tableRef1.value.changeActiveTabs(form.value.activeTabs, form.value.activeChildTabs, tabledata);
}
}
},
{
const tabledata = deviceData.filter((item) => item.document_State === "未归档")
tableRef1.value && tableRef1.value.changeActiveTabs(form.value.activeTabs,form.value.activeChildTabs,tabledata);
immediate: true,
deep: true,
}
else if(form.value.activeTabs === 4)//设备归档
{
const tabledata = deviceData.filter((item) => item.check_State === "检测完成" && item.document_State === "未归档")
tableRef1.value && tableRef1.value.changeActiveTabs(form.value.activeTabs,form.value.activeChildTabs,tabledata);
}
else if(form.value.activeTabs === 3 || form.value.activeTabs === 5)//报告生成、数据查询
{
const tabledata = deviceData.filter((item) => item.check_State === "检测完成");
tableRef1.value && tableRef1.value.changeActiveTabs(form.value.activeTabs,form.value.activeChildTabs,tabledata);
}
}
},
{
immediate: true,
deep: true,
}
);
watch(
() => form.value,
(val, oldVal) => {
if (val) {
tableRef2.value && tableRef2.value.changeActiveTabs(form.value.activeTabs,form.value.activeChildTabs);
() => form.value,
(val, oldVal) => {
if (val) {
tableRef2.value && tableRef2.value.changeActiveTabs(form.value.activeTabs, form.value.activeChildTabs);
}
},
{
immediate: true,
deep: true,
}
},
{
immediate: true,
deep: true,
}
);
const pieRef1 = ref(),
pieRef2 = ref(),
pieRef3 = ref();
pieRef2 = ref(),
pieRef3 = ref();
const chartsData1: any = ref([]),
chartsData2: any = ref([]),
chartsData3: any = ref([]);
chartsData2: any = ref([]),
chartsData3: any = ref([]);
const findPlanById = (plans: Plan.ReqPlan[], id: string): Plan.ReqPlan | undefined => {
const findPlanById = (plans: Plan.ReqPlan[], id: string): Plan.ReqPlan | undefined => {
for (const plan of plans) {
if (plan.id === id) {
return plan;
@@ -286,14 +280,14 @@ const getPieData = async (id: string) => {
//handleCheckFunction(0)//切换左侧树默认css功能是设备检测
// 初始化计数对象
const checkStateCount: { [key: number]: number } = { 0: 0, 1: 0, 2: 0, 3: 0 };
const checkResultCount: { [key: number]: number } = { 0: 0, 1: 0, 2: 0 };
const reportStateCount: { [key: number]: number } = { 0: 0, 1: 0, 2: 0 };
const checkStateCount: { [key: number]: number } = {0: 0, 1: 0, 2: 0, 3: 0};
const checkResultCount: { [key: number]: number } = {0: 0, 1: 0, 2: 0};
const reportStateCount: { [key: number]: number } = {0: 0, 1: 0, 2: 0};
if (id) {
const boundPqDevList = ref<Device.ResPqDev[]>([])//根据检测计划id查询出所有已绑定的设备
const plan = findPlanById(planList.value?.data || [], id);
if (plan) {
isTimeCheck.value = plan.timeCheck ===1; // 将 1 转换为 true0 转换为 false
isTimeCheck.value = plan.timeCheck === 1; // 将 1 转换为 true0 转换为 false
} else {
// 处理未找到计划的情况
isTimeCheck.value = false; // 或者其他默认值
@@ -319,20 +313,20 @@ const getPieData = async (id: string) => {
}
chartsData1.value = [
{ value: checkStateCount[0], name: "未检", itemStyle: { color: '#fac858' } },
{ value: checkStateCount[1], name: "检测中", itemStyle: { color: '#ee6666' } },
{ value: checkStateCount[2], name: "检测完成", itemStyle: { color: '#91cc75' } },
{ value: checkStateCount[3], name: "归档", itemStyle: { color: '#5470c6' } },
{value: checkStateCount[0], name: "未检", itemStyle: {color: '#fac858'}},
{value: checkStateCount[1], name: "检测中", itemStyle: {color: '#ee6666'}},
{value: checkStateCount[2], name: "检测完成", itemStyle: {color: '#91cc75'}},
{value: checkStateCount[3], name: "归档", itemStyle: {color: '#5470c6'}},
];
chartsData2.value = [
{ value: checkResultCount[2], name: "未检" , itemStyle: { color: '#fac858' } },
{ value: checkResultCount[0], name: "不符合" , itemStyle: { color: '#ee6666' } },
{ value: checkResultCount[1], name: "符合", itemStyle: { color: '#91cc75' } },
{value: checkResultCount[2], name: "未检", itemStyle: {color: '#fac858'}},
{value: checkResultCount[0], name: "不符合", itemStyle: {color: '#ee6666'}},
{value: checkResultCount[1], name: "符合", itemStyle: {color: '#91cc75'}},
];
chartsData3.value = [
{ value: reportStateCount[2], name: "未检" , itemStyle: { color: '#fac858' } },
{ value: reportStateCount[0], name: "未生成" , itemStyle: { color: '#ee6666' } },
{ value: reportStateCount[1], name: "已生成", itemStyle: { color: '#91cc75' } },
{value: reportStateCount[2], name: "未检", itemStyle: {color: '#fac858'}},
{value: reportStateCount[0], name: "未生成", itemStyle: {color: '#ee6666'}},
{value: reportStateCount[1], name: "已生成", itemStyle: {color: '#91cc75'}},
];
pieRef1.value.init();
@@ -343,7 +337,7 @@ const getPieData = async (id: string) => {
// pieRef3.value.reSize(470,145,true);
};
const getTree = (data?: any) => {
treeRef.value.getTreeData(data);
treeRef.value.getTreeData(data);
};
//前往检测
const handleDetection = () => {
@@ -373,76 +367,75 @@ const handleCheckFunction = (val: any) => {
switch (val) {
case 0://自动检测
checkStateTable.value = [0,1,2]
tabLabel1.value = "设备检测";
break;
checkStateTable.value = [0, 1, 2]
tabLabel1.value = "设备检测";
break;
case 1://手动检测
tabLabel1.value = "手动检测";
break;
tabLabel1.value = "手动检测";
break;
case 2://设备复检
tabLabel1.value = "设备复检";
break;
tabLabel1.value = "设备复检";
break;
case 3://报告生成
checkStateTable.value = [2,3]
tabLabel1.value = "报告生成";
//tabShow.value = true;
break;
checkStateTable.value = [2, 3]
tabLabel1.value = "报告生成";
//tabShow.value = true;
break;
case 4://设备归档
checkStateTable.value = [2]
tabLabel1.value = "设备归档";
break;
checkStateTable.value = [2]
tabLabel1.value = "设备归档";
break;
case 5://数据查询
checkStateTable.value = [2,3]
tabLabel1.value = "数据查询";
break;
checkStateTable.value = [2, 3]
tabLabel1.value = "数据查询";
break;
}
form.value.activeTabs = val;
};
const resizeObserver = new ResizeObserver(entries => {
for (let entry of entries) {
chartsWidth.value = entry.contentRect.width;
//console.log('Charts Info Width:', chartsWidth.value);
pieRef1.value.reSize(chartsWidth.value * 0.95,180,true);
pieRef2.value.reSize(chartsWidth.value * 0.95,180,true);
pieRef3.value.reSize(chartsWidth.value * 0.95,180,true);
pieRef1.value.reSize(chartsWidth.value * 0.95, 180, true);
pieRef2.value.reSize(chartsWidth.value * 0.95, 180, true);
pieRef3.value.reSize(chartsWidth.value * 0.95, 180, true);
}
});
onBeforeMount(async () => {
const patternId = dictStore.getDictData('Pattern').find(item=>item.name=== modeStore.currentMode)?.id ?? ''//获取数据字典中对应的id
const reqPlan: Plan.ReqPlan = {
pattern: patternId,
datasourceIds: "",
sourceIds: "",
planId: "",
scriptName: "",
errorSysName: "",
sourceName: "",
devIds: [],
id: "",
name: "",
dataSourceId: "",
scriptId: "",
errorSysId: "",
timeCheck: 0,
testState: 0,
reportState: 0,
result: 0,
code: 0,
state: 0
};
planList.value = (await getPlanListByPattern(reqPlan)) as ResultData<Plan.ReqPlan[]>;
const patternId = dictStore.getDictData('Pattern').find(item => item.name === modeStore.currentMode)?.id ?? ''//获取数据字典中对应的id
const reqPlan: Plan.ReqPlan = {
pattern: patternId,
datasourceIds: "",
sourceIds: "",
planId: "",
scriptName: "",
errorSysName: "",
sourceName: "",
devIds: [],
id: "",
name: "",
dataSourceId: "",
scriptId: "",
errorSysId: "",
timeCheck: 0,
testState: 0,
reportState: 0,
result: 0,
code: 0,
state: 0
};
planList.value = (await getPlanListByPattern(reqPlan)) as ResultData<Plan.ReqPlan[]>;
console.log('qqq',planList.value)
console.log('qqq', planList.value)
if (planList.value.data[0].children[0]) {
currentId.value = planList.value.data[0].children[0].id;
}
if (chartsInfoRef.value) {
if (chartsInfoRef.value) {
resizeObserver.observe(chartsInfoRef.value);
}
getTree(planList.value.data);
@@ -457,7 +450,6 @@ onUnmounted(() => {
});
</script>
<style lang="scss" scoped>
.static {
@@ -466,7 +458,7 @@ onUnmounted(() => {
height: 100%;
display: flex;
justify-content: space-between;
//background-color: #eee;
//background-color: #eee;
.left_tree {
width: 14% !important;
@@ -486,7 +478,7 @@ onUnmounted(() => {
//align-items: center;
//box-sizing: border-box;
.container_function {
width: 100%;
height: auto;
@@ -512,6 +504,7 @@ onUnmounted(() => {
border-radius: 8px;
padding: 0px 30px;
margin-right: 50px;;
.item_img {
width: 60px;
height: 60px;
@@ -541,7 +534,7 @@ onUnmounted(() => {
p {
margin: 0;
font-weight: 800;
color:#fff;
color: #fff;
font-size: 14px;
font-family: "Microsoft YaHei", "微软雅黑", "Arial", sans-serif;
}
@@ -564,6 +557,7 @@ onUnmounted(() => {
}
}
}
// .container_function {
// width: 100%;
// height: auto;
@@ -645,20 +639,21 @@ onUnmounted(() => {
// }
// }
.container_pieShow{
.container_pieShow {
width: 100% !important;
//min-height: 200px !important;
height:auto;
height: auto;
background-color: #eee;
// display: flex;
// justify-content: space-between;
// padding-left: 2ch;
margin-bottom: 10px;
}
.el-collapse {
width: 100% !important;
// min-height: 200px !important;
height:100% !important;
height: 100% !important;
background-color: #eee;
// display: flex;
// justify-content: space-between;
@@ -666,10 +661,10 @@ onUnmounted(() => {
// margin-bottom: 10px;
}
.el-collapse-item{
.el-collapse-item {
width: 100% !important;
// min-height: 200px !important;
height:100% !important;
height: 100% !important;
background-color: #eee;
// display: flex !important;
}
@@ -677,7 +672,7 @@ onUnmounted(() => {
.container_charts {
width: 100%;
//min-height: 180px !important;
height:100%;
height: 100%;
background-color: #eee;
display: flex;
justify-content: space-between;
@@ -694,14 +689,15 @@ onUnmounted(() => {
}
}
.el-tabs{
.el-tabs {
width: 100% !important;
border-radius: 4px;
}
.tabs-menu{
.tabs-menu {
height: 100%;
}
.container_table {
// width: 100%;
flex: 1 !important;
@@ -717,16 +713,19 @@ onUnmounted(() => {
}
}
}
:deep(.el-collapse-item__header){
:deep(.el-collapse-item__header) {
color: var(--el-color-primary);
font-size: 14px;
font-family: "Microsoft YaHei", "微软雅黑", "Arial", sans-serif;
}
:deep(.el-collapse-item__conten){
:deep(.el-collapse-item__conten) {
// background-color:#f6f6f6;
padding-bottom: 0px !important;
}
:deep(.el-collapse-item__content ){
:deep(.el-collapse-item__content ) {
// background-color:#f6f6f6;
padding-bottom: 0px !important;
}