|
@@ -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: {
|