Browse Source

[Style 0000] 报警历史表格-报警类型字段样式及内容调整

houzekong 2 months ago
parent
commit
4f18ce50f5
1 changed files with 10 additions and 0 deletions
  1. 10 0
      src/views/vent/monitorManager/comment/AlarmHistoryTable.vue

+ 10 - 0
src/views/vent/monitorManager/comment/AlarmHistoryTable.vue

@@ -4,6 +4,15 @@
       <template #form-onExportXls>
         <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls()"> 导出</a-button>
       </template>
+
+      <template #bodyCell="{ column, record }">
+        <template v-if="column.dataIndex === 'nwartype'">
+          <!-- 除了 101(蓝色预警)其他都是红色字体 -->
+          <span :class="{ 'color-#ff3823': ['102', '103', '104', '201', '1001'].includes(record.nwartype) }">
+            {{ render.renderDictText(record.nwartype, 'leveltype') || '-' }}
+          </span>
+        </template>
+      </template>
     </BasicTable>
   </div>
 </template>
@@ -17,6 +26,7 @@
   import { defHttp } from '/@/utils/http/axios';
   import dayjs from 'dayjs';
   import { getAutoScrollContainer } from '/@/utils/common/compUtils';
+  import { render } from '/@/utils/common/renderUtils';
 
   const props = defineProps({
     columnsType: {