update 设备分组

This commit is contained in:
lb
2023-10-09 17:01:19 +08:00
parent 907db90e93
commit 769830c448
6 changed files with 200 additions and 10 deletions

View File

@@ -15,7 +15,8 @@
</DetailGraph> -->
<!-- <DetailGraph id="dg3" key="dg3" ref="dg3" />
<DetailGraph id="dg4" key="dg4" ref="dg4" /> -->
<div v-if="!series || series.length == 0" style="color: #777; font-size: 16px; letter-spacing: 1px; text-align: center; padding-top: 56px; text-decoration: underline;">暂无数据</div>
<!-- <div v-if="!series || series.length == 0" style="color: #777; font-size: 16px; letter-spacing: 1px; text-align: center; padding-top: 56px; text-decoration: underline;">暂无数据</div> -->
<div v-if="!series || series.length == 0" class="no-data-bg" />
<LineGraph
v-else
:x-props="lineData.xProps"

View File

@@ -6,7 +6,7 @@
-->
<template>
<div class="quality-container" style="background: #f2f4f9; flex: 1">
<div class="quality-container" style="background: #f2f4f9; flex: 1; display: flex; flex-direction: column;">
<el-row
class=""
style="
@@ -43,6 +43,7 @@
background: #fff;
padding: 12px 16px 16px;
border-radius: 8px;
flex: 1;
">
<el-row style="display: flex; align-items: center">
<div class="blue-title">产线检测详细</div>
@@ -64,12 +65,13 @@
<transition mode="out-in" name="fade-down">
<template v-if="mode == 'table'">
<base-table
v-if="mode == 'table'"
v-if="mode == 'table' && list.length"
:table-props="tableProps"
:page="queryParams.pageNo"
:limit="queryParams.pageSize"
:table-data="list"
@emitFun="handleEmitFun"></base-table>
<div v-else class="no-data-bg"></div>
</template>
<GraphPage