zmc
2023-09-27 eeef5d4039d2b3fee6854ddc2789aa23232b2cfb
src/sfc/ExceptionType.vue
@@ -59,7 +59,7 @@
<template>
  <div class="excption">
    <span class="exception-text">异常类型:</span>
    <h1 class="exception-text">异常类型:</h1>
     <el-checkbox
    v-model="checkAll"
    :indeterminate="isIndeterminate"
@@ -70,6 +70,7 @@
    <el-checkbox-group  v-model="checkedList"  @change="handleCheckedExceptionChange">
    <el-checkbox :label="item"  v-for="item in exceptionType" :key="item">
      <template #default>
        <!-- <div style="display: flex; flex-flow: row wrap;">  -->
        <span v-if="item == '0'">断电或断网</span>
        <span v-else-if="item == '1'">数据超低</span>
        <span v-else-if="item == '2'">超标</span>
@@ -78,6 +79,7 @@
        <span v-else-if="item == '5'">临近超标异常</span>
        <span v-else-if="item == '6'">单日超标次数临界异常</span>
        <span v-else-if="item == '7'">滑动平均值突变</span>
      <!-- </div> -->
      </template>
    </el-checkbox>
  </el-checkbox-group>
@@ -89,7 +91,9 @@
    display: flex; 
}
.exception-text {
  font-weight: bold;
  // font-weight: bold;
  font-size: 14px;
  color: #333333;
  margin-top: 5px;
    margin-right: 7px;
}