dustMonitorTable.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <template>
  2. <div class="dustMonitor">
  3. <div class="search-area">
  4. <a-row>
  5. <a-col :span="12">
  6. <div class="area-item">
  7. <div class="item-text">录入时间:</div>
  8. <span style="width: 240px; color: #fff">{{ createTime }}</span>
  9. </div>
  10. </a-col>
  11. <a-col :span="12">
  12. <div class="area-item">
  13. <div class="item-text">录入人员:</div>
  14. <span style="width: 240px; color: #fff">{{ createBy }}</span>
  15. </div>
  16. </a-col>
  17. </a-row>
  18. </div>
  19. <div class="content-area">
  20. <a-table
  21. v-if="columns.length > 0"
  22. :columns="columns"
  23. :data-source="tableData"
  24. :pagination="false"
  25. size="small"
  26. class="tableW"
  27. :scroll="{ y: 620 }"
  28. >
  29. <template #bodyCell="{ column, record }">
  30. <a v-if="column.dataIndex === 'operation'" class="table-action-link" @click="handlerLocation(record)">定位</a>
  31. </template>
  32. </a-table>
  33. </div>
  34. </div>
  35. </template>
  36. <script setup lang="ts">
  37. import { ref, onMounted, reactive, computed, watch, nextTick } from 'vue';
  38. import { dsutColumns, dsutDltColumns, dustSwColumns } from './comment.data';
  39. import { getInfoList, getAllFileList, getFileListById } from './comment.api';
  40. import { useGlobSetting } from '/@/hooks/setting';
  41. const emit = defineEmits(['locate']);
  42. const props = defineProps({
  43. isShowAction: {
  44. type: Boolean,
  45. default: false,
  46. },
  47. });
  48. let tableData = ref<any[]>([]);
  49. let selectList = ref<any[]>([]);
  50. let resultByWorkplace = ref<any[]>([]);
  51. let AllMaxValues = ref<any[]>([]);
  52. let filteredResultByWorkplace = ref<any[]>([]); //根据工作场所查询的数据
  53. let workplaceList = ref<any[]>([]); //根据工作场所查询的数据
  54. let selectedFileId = ref<string | null>(null);
  55. let selectedWorkplace = ref<string | null>(null);
  56. let DefaultValue = ref<string | null>(null);
  57. let createBy = ref<any[]>([]);
  58. let createTime = ref<any[]>([]);
  59. const { sysOrgCode } = useGlobSetting();
  60. let formSearch = reactive({
  61. pageNum: 1,
  62. pageSize: 1000,
  63. fileId: '',
  64. fileName: '',
  65. });
  66. const columns = ref([]);
  67. watch(
  68. () => props.isShowAction,
  69. (value) => {
  70. if (value) {
  71. const computedColumns = computed(() => {
  72. switch (sysOrgCode) {
  73. case 'sdmtjtbetmk':
  74. return dsutColumns; // 布尔台对应的列配置
  75. case 'sdmtjtdltmk':
  76. return dsutDltColumns; // 大柳塔对应的列配置
  77. case 'sdmtjtswmk':
  78. return dustSwColumns; // 上湾对应的列配置
  79. default:
  80. return dsutColumns; // 默认情况下返回的列配置
  81. }
  82. });
  83. computedColumns.value.push({
  84. title: '操作',
  85. dataIndex: 'operation',
  86. width: 100,
  87. align: 'center',
  88. });
  89. if (columns.value.length == 0) columns.value = computedColumns.value;
  90. } else {
  91. if (columns.value.length == 0) columns.value = computedColumns.value;
  92. }
  93. },
  94. { immediate: true }
  95. );
  96. function handlerLocation(record) {
  97. emit('locate', record);
  98. }
  99. //获取粉尘监测结果数据
  100. async function getTableList(params: any) {
  101. let res = await getInfoList({ type: 'smoke', ...params });
  102. const content = res.content;
  103. let contentArr = JSON.parse(content);
  104. tableData.value = contentArr;
  105. createBy.value = res.createBy;
  106. createTime.value = res.createTime;
  107. processTableData(contentArr);
  108. if (workplaceList.value.length > 0) {
  109. console.log(workplaceList.value, 'workplaceList');
  110. DefaultValue.value = workplaceList.value[0];
  111. workPlaceChange(selectedWorkplace.value);
  112. }
  113. }
  114. // 处理 tableData 数据
  115. function processTableData(data: any) {
  116. // 根据 gzcs 字段进行分组
  117. const groupedData = data.reduce((acc: any, item: any) => {
  118. const workplace = item.gzcs;
  119. if (!acc[workplace]) {
  120. acc[workplace] = [];
  121. }
  122. acc[workplace].push(item);
  123. return acc;
  124. }, {});
  125. // 筛选每个工作场所下的最大值
  126. const result = Object.keys(groupedData).flatMap((workplace) => {
  127. const items = groupedData[workplace];
  128. const maxValues = [
  129. { key: 'sc_zcds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  130. { key: 'jx_zcds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  131. { key: 'sc_hcds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  132. { key: 'jx_hcds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  133. { key: 'zcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  134. { key: 'hcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  135. // { key: 'zcrxd_ds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  136. // { key: 'zcrxd_jqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  137. // { key: 'hcrxd_ds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  138. // { key: 'hcrxd_jqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
  139. ];
  140. items.forEach((item: any) => {
  141. maxValues.forEach((maxValue) => {
  142. if (item[maxValue.key] > maxValue.value) {
  143. maxValue.value = item[maxValue.key];
  144. maxValue.gz = item.gz;
  145. maxValue.jcdd = item.jcdd;
  146. maxValue.fczl = item.fczl;
  147. }
  148. });
  149. });
  150. return maxValues;
  151. });
  152. resultByWorkplace.value = result;
  153. workplaceList.value = Array.from(new Set(resultByWorkplace.value.map((item) => item.gzcs)));
  154. if (workplaceList.value.length > 0) {
  155. selectedWorkplace.value = workplaceList.value[0];
  156. workPlaceChange(selectedWorkplace.value);
  157. }
  158. // 筛选整个 tableData 下的最大值
  159. const overallMaxValues = [
  160. { key: 'sc_zcds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  161. { key: 'jx_zcds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  162. { key: 'sc_hcds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  163. { key: 'jx_hcds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  164. { key: 'zcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  165. { key: 'hcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  166. // { key: 'zcrxd_ds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  167. // { key: 'zcrxd_jqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  168. // { key: 'hcrxd_ds', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  169. // { key: 'hcrxd_jqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
  170. ];
  171. data.forEach((item: any) => {
  172. overallMaxValues.forEach((maxValue) => {
  173. if (item[maxValue.key] > maxValue.value) {
  174. maxValue.value = item[maxValue.key];
  175. maxValue.gz = item.gz;
  176. maxValue.jcdd = item.jcdd;
  177. maxValue.fczl = item.fczl;
  178. maxValue.gzcs = item.gzcs;
  179. }
  180. });
  181. });
  182. AllMaxValues.value = overallMaxValues;
  183. }
  184. //获取所有文件列表
  185. async function getAllFile() {
  186. let res = await getAllFileList({ type: 'smoke' });
  187. selectList.value = res.records.map((item: any) => ({
  188. fileId: item.fileId,
  189. fileName: item.fileName,
  190. }));
  191. if (selectList.value.length > 0) {
  192. formSearch.fileId = selectList.value[0].fileId;
  193. getSearch();
  194. }
  195. }
  196. //查询
  197. function getSearch() {
  198. const selectedFile = selectList.value.find((item) => item.fileId === formSearch.fileId);
  199. const params = {
  200. fileId: formSearch.fileId,
  201. fileName: selectedFile ? selectedFile.fileName : '',
  202. };
  203. getTableList(params);
  204. }
  205. function workPlaceChange(value: any) {
  206. selectedWorkplace.value = value;
  207. filteredResultByWorkplace.value = resultByWorkplace.value.filter((item) => item.gzcs === value);
  208. }
  209. onMounted(() => {
  210. getTableList({ type: 'smoke' });
  211. getAllFile().then(() => {
  212. if (selectList.value.length > 0) {
  213. formSearch.fileId = selectList.value[0].fileId;
  214. selectedFileId.value = selectList.value[0].fileId;
  215. getSearch();
  216. }
  217. });
  218. });
  219. </script>
  220. <style lang="less" scoped>
  221. @ventSpace: zxm;
  222. .dustMonitor {
  223. .search-area {
  224. margin: 15px;
  225. .area-item {
  226. display: flex;
  227. align-items: center;
  228. .item-text {
  229. color: #fff;
  230. }
  231. }
  232. }
  233. .zxm-picker,
  234. .zxm-input {
  235. border: 1px solid #3ad8ff77;
  236. background-color: #ffffff00;
  237. color: #fff;
  238. }
  239. }
  240. :deep(.@{ventSpace}-table-body) {
  241. height: auto !important;
  242. tr > td {
  243. background: #ffffff00 !important;
  244. }
  245. tr.@{ventSpace}-table-row-selected {
  246. td {
  247. background: #007cc415 !important;
  248. }
  249. }
  250. }
  251. :deep(.jeecg-basic-table .@{ventSpace}-table-wrapper .@{ventSpace}-table-title) {
  252. min-height: 0;
  253. }
  254. :deep(.@{ventSpace}-pagination) {
  255. margin-right: 20px !important;
  256. }
  257. :deep(.zxm-table-thead > tr > th:last-child) {
  258. border-right: 1px solid #91e9fe55 !important;
  259. }
  260. </style>