AlarmHistoryTableHj.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <div class="alarm-history-table">
  3. <BasicTable ref="alarmHistory" @register="registerTable">
  4. <template #bodyCell="{ column, record }">
  5. <template v-if="column.dict">
  6. <!-- 除了 101(蓝色预警)其他都是红色字体 -->
  7. <span v-if="column.dataIndex === 'nwartype'" :class="{ 'color-#ff3823': ['102', '103', '104', '201', '1001'].includes(record.nwartype) }">
  8. {{ render.renderDictText(record.nwartype, 'leveltype') || '-' }}
  9. </span>
  10. <span v-else>
  11. {{ render.renderDictText(record[column.dataIndex], column.dict) || '-' }}
  12. </span>
  13. </template>
  14. </template>
  15. </BasicTable>
  16. </div>
  17. </template>
  18. <script lang="ts" setup>
  19. //ts语法
  20. import { watch, ref, defineExpose, inject, onMounted } from 'vue';
  21. import { BasicTable, BasicColumn } from '/@/components/Table';
  22. import { useListPage } from '/@/hooks/system/useListPage';
  23. import { defHttp } from '/@/utils/http/axios';
  24. import dayjs from 'dayjs';
  25. import { getAutoScrollContainer } from '/@/utils/common/compUtils';
  26. import { render } from '/@/utils/common/renderUtils';
  27. const props = defineProps({
  28. scroll: {
  29. type: Object,
  30. default: { y: 0 },
  31. },
  32. list: {
  33. type: Function,
  34. default: (params) => defHttp.get({ url: '/safety/ventanalyAlarmLog/getHZGateAlarmLog', params }),
  35. },
  36. });
  37. const alarmHistory = ref();
  38. const columns: BasicColumn[] = [
  39. {
  40. title: '安装地点',
  41. dataIndex: 'content',
  42. width: 300,
  43. align: 'center',
  44. },
  45. {
  46. title: '报警事件',
  47. dataIndex: 'createTime',
  48. width: 300,
  49. align: 'center',
  50. },
  51. ];
  52. const tableScroll = props.scroll.y ? ref({ y: props.scroll.y - 100 }) : ref({});
  53. watch(
  54. () => props.scroll.y,
  55. (newVal) => {
  56. if (newVal) {
  57. tableScroll.value = { y: newVal - 100 };
  58. } else {
  59. tableScroll.value = {};
  60. }
  61. }
  62. );
  63. // 列表页面公共参数、方法
  64. const { tableContext, onExportXls } = useListPage({
  65. tableProps: {
  66. api: props.list,
  67. columns: columns,
  68. canResize: true,
  69. showTableSetting: false,
  70. showActionColumn: false,
  71. bordered: false,
  72. size: 'small',
  73. scroll: tableScroll,
  74. showIndexColumn: true,
  75. formConfig: {
  76. showAdvancedButton: false,
  77. // autoAdvancedCol: 2,
  78. schemas: [
  79. {
  80. field: 'createTime_begin',
  81. label: '开始时间',
  82. component: 'DatePicker',
  83. defaultValue: dayjs().add(-30, 'day').format('YYYY-MM-DD HH:mm:ss'),
  84. required: true,
  85. componentProps: {
  86. showTime: true,
  87. valueFormat: 'YYYY-MM-DD HH:mm:ss',
  88. getPopupContainer: getAutoScrollContainer,
  89. },
  90. colProps: {
  91. span: 4,
  92. },
  93. },
  94. {
  95. field: 'createTime_end',
  96. label: '结束时间',
  97. component: 'DatePicker',
  98. defaultValue: dayjs(),
  99. required: true,
  100. componentProps: {
  101. showTime: true,
  102. valueFormat: 'YYYY-MM-DD HH:mm:ss',
  103. getPopupContainer: getAutoScrollContainer,
  104. },
  105. colProps: {
  106. span: 4,
  107. },
  108. },
  109. {
  110. label: '查询设备',
  111. field: 'deviceid',
  112. component: 'Input',
  113. colProps: {
  114. span: 4,
  115. },
  116. },
  117. ],
  118. },
  119. fetchSetting: {
  120. listField: 'records',
  121. },
  122. pagination: {
  123. current: 1,
  124. pageSize: 10,
  125. pageSizeOptions: ['10', '30', '50', '100'],
  126. },
  127. },
  128. });
  129. //注册table数据
  130. const [registerTable, { setLoading }] = tableContext;
  131. onMounted(async () => {});
  132. defineExpose({ setLoading });
  133. </script>
  134. <style scoped lang="less">
  135. @ventSpace: zxm;
  136. :deep(.ventSpace-table-body) {
  137. height: auto !important;
  138. }
  139. :deep(.zxm-picker) {
  140. height: 30px !important;
  141. }
  142. .alarm-history-table {
  143. width: 100%;
  144. :deep(.jeecg-basic-table-form-container) {
  145. .@{ventSpace}-form {
  146. padding: 0 !important;
  147. border: none !important;
  148. margin-bottom: 0 !important;
  149. .@{ventSpace}-picker,
  150. .@{ventSpace}-select-selector {
  151. width: 100% !important;
  152. background: #00000017;
  153. border: 1px solid #b7b7b7;
  154. input,
  155. .@{ventSpace}-select-selection-item,
  156. .@{ventSpace}-picker-suffix {
  157. color: #fff;
  158. }
  159. .@{ventSpace}-select-selection-placeholder {
  160. color: #ffffffaa;
  161. }
  162. }
  163. }
  164. .@{ventSpace}-table-title {
  165. min-height: 0 !important;
  166. }
  167. }
  168. }
  169. </style>