HistoryTable.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. <template>
  2. <div class="history-table" v-if="loading">
  3. <BasicTable ref="historyTable" @register="registerTable" :data-source="dataSource">
  4. <template #bodyCell="{ column, record }">
  5. <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == '0' ? 'green' : 'red'">{{
  6. record.warnFlag == '0' ? '正常' : '报警'
  7. }}</a-tag>
  8. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == '0' ? '#f00' : 'green'">{{
  9. record.netStatus == '0' ? '断开' : '连接'
  10. }}</a-tag>
  11. <template v-if="column.dataIndex === 'nwartype'">
  12. <!-- 除了 101(蓝色预警)其他都是红色字体 -->
  13. <span :class="{ 'color-#ff3823': ['102', '103', '104', '201', '1001'].includes(record.nwartype) }">
  14. {{ render.renderDictText(record.nwartype, 'leveltype') || '-' }}
  15. </span>
  16. </template>
  17. <slot name="filterCell" v-bind="{ column, record }"></slot>
  18. </template>
  19. <template #form-submitBefore>
  20. <a-button type="primary" preIcon="ant-design:search-outlined" @click="getDataSource">查询</a-button>
  21. <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXlsFn"> 导出</a-button>
  22. </template>
  23. </BasicTable>
  24. </div>
  25. </template>
  26. <script lang="ts" setup>
  27. //ts语法
  28. import { watchEffect, ref, watch, defineExpose, inject, nextTick, onMounted, computed } from 'vue';
  29. import { FormSchema } from '/@/components/Form/index';
  30. import { BasicTable } from '/@/components/Table';
  31. import { useListPage } from '/@/hooks/system/useListPage';
  32. import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
  33. import { defHttp } from '/@/utils/http/axios';
  34. import dayjs from 'dayjs';
  35. import { getAutoScrollContainer } from '/@/utils/common/compUtils';
  36. import { render } from '/@/utils/common/renderUtils';
  37. import { useMethods } from '/@/hooks/system/useMethods';
  38. const globalConfig = inject('globalConfig');
  39. const props = defineProps({
  40. columnsType: {
  41. type: String,
  42. },
  43. columns: {
  44. type: Array,
  45. // required: true,
  46. default: () => [],
  47. },
  48. deviceType: {
  49. type: String,
  50. required: true,
  51. },
  52. deviceListApi: {
  53. type: Function,
  54. },
  55. deviceArr: {
  56. type: Array,
  57. // required: true,
  58. default: () => [],
  59. },
  60. designScope: {
  61. type: String,
  62. },
  63. sysId: {
  64. type: String,
  65. },
  66. deviceId: {
  67. type: String,
  68. },
  69. scroll: {
  70. type: Object,
  71. default: { y: 0 },
  72. },
  73. formSchemas: {
  74. type: Array<FormSchema>,
  75. default: () => [],
  76. },
  77. });
  78. const getDeviceListApi = (params) => defHttp.post({ url: '/monitor/device', params });
  79. const historyTable = ref();
  80. const loading = ref(false);
  81. const stationType = ref('plc1');
  82. const dataSource = ref([]);
  83. const intervalMap = new Map([
  84. ['1', '1s'],
  85. ['2', '5s'],
  86. ['3', '10s'],
  87. ['4', '30s'],
  88. ['5', '1m'],
  89. ['6', '10m'],
  90. ['7', '30m'],
  91. ['8', '1h'],
  92. ['9', '1d'],
  93. ]);
  94. const getExportXlsUrl = () => {
  95. if (stationType.value !== 'redis') {
  96. return '/safety/ventanalyMonitorData/export/historydata';
  97. } else {
  98. return '/monitor/history/exportHistoryData';
  99. }
  100. };
  101. const emit = defineEmits(['change']);
  102. const historyType = ref('');
  103. const deviceKide = ref('');
  104. const columns = ref([]);
  105. const tableScroll = props.scroll.y ? ref({ y: props.scroll.y - 100 }) : ref({});
  106. let deviceOptions = ref([]);
  107. const deviceTypeStr = ref('');
  108. const deviceTypeName = ref('');
  109. const deviceType = ref('');
  110. loading.value = true;
  111. watch(
  112. () => {
  113. return props.columnsType;
  114. },
  115. async (newVal) => {
  116. if (!newVal) return;
  117. deviceKide.value = newVal;
  118. if (historyTable.value) {
  119. getForm().resetFields();
  120. // getForm().updateSchema();
  121. // getForm();
  122. }
  123. dataSource.value = [];
  124. // const column = getTableHeaderColumns(newVal.includes('_history') ? newVal : newVal + '_history');
  125. // if (column && column.length < 1) {
  126. // const arr = newVal.split('_');
  127. // console.log('历史记录列表表头------------>', arr[0] + '_monitor');
  128. // columns.value = getTableHeaderColumns(arr[0] + '_history');
  129. // if (columns.value.length < 1) {
  130. // if (historyType.value) {
  131. // columns.value = getTableHeaderColumns(historyType.value + '_history');
  132. // }
  133. // }
  134. // } else {
  135. // columns.value = column;
  136. // }
  137. await getDeviceList();
  138. nextTick(() => {
  139. getDataSource();
  140. });
  141. if (historyTable.value) reload();
  142. },
  143. {
  144. immediate: true,
  145. }
  146. );
  147. watch(historyType, (type) => {
  148. if (!type) return;
  149. // if (historyTable.value) getForm().resetFields()
  150. const column = getTableHeaderColumns(type.includes('_history') ? type : type + '_history');
  151. if (column && column.length < 1) {
  152. const arr = type.split('_');
  153. columns.value = getTableHeaderColumns(arr[0] + '_history');
  154. } else {
  155. columns.value = column;
  156. }
  157. setColumns(columns.value);
  158. });
  159. watch(
  160. () => props.scroll.y,
  161. (newVal) => {
  162. if (newVal) {
  163. tableScroll.value = { y: newVal - 100 };
  164. } else {
  165. tableScroll.value = {};
  166. }
  167. }
  168. );
  169. // watch(stationType, (type) => {
  170. // if (type) {
  171. // nextTick(() => {
  172. // getDataSource();
  173. // });
  174. // }
  175. // });
  176. watch(
  177. () => props.deviceId,
  178. async () => {
  179. await getForm().setFieldsValue({});
  180. await getDeviceList();
  181. }
  182. );
  183. async function getDeviceList() {
  184. // if (props.deviceType.split('_')[1] && props.deviceType.split('_')[1] === 'history') return;
  185. let result;
  186. if (!props.sysId) {
  187. if (props.deviceListApi) {
  188. const res = await props.deviceListApi();
  189. if (props.deviceType.startsWith('modelsensor')) {
  190. if (res['msgTxt'] && res['msgTxt'][0] && res['msgTxt'][0]['datalist']) {
  191. result = res['msgTxt'][0]['datalist'];
  192. }
  193. } else {
  194. if (res['records'] && res['records'].length > 0) result = res['records'];
  195. }
  196. if (res['msgTxt'] && res['msgTxt'][0]) {
  197. deviceTypeName.value = res['msgTxt'][0]['typeName'];
  198. deviceType.value = res['msgTxt'][0]['type'];
  199. }
  200. } else {
  201. const res = await getDeviceListApi({ devicetype: props.deviceType, pageSize: 10000 });
  202. if (res['records'] && res['records'].length > 0) {
  203. result = res['records'];
  204. } else if (res['msgTxt'] && res['msgTxt'][0] && res['msgTxt'][0]['datalist']) {
  205. result = res['msgTxt'][0]['datalist'];
  206. }
  207. if (res['msgTxt'] && res['msgTxt'][0]) {
  208. deviceTypeName.value = res['msgTxt'][0]['typeName'];
  209. deviceType.value = res['msgTxt'][0]['type'];
  210. }
  211. }
  212. } else {
  213. const res = await getDeviceListApi({
  214. sysId: props.sysId,
  215. devicetype: props.deviceType.startsWith('vehicle') ? 'location_normal' : props.deviceType,
  216. pageSize: 10000,
  217. });
  218. if (res['records'] && res['records'].length > 0) {
  219. result = res['records'];
  220. } else if (res['msgTxt'] && res['msgTxt'][0] && res['msgTxt'][0]['datalist']) {
  221. result = res['msgTxt'][0]['datalist'];
  222. }
  223. if (res['msgTxt'] && res['msgTxt'][0]) {
  224. deviceTypeName.value = res['msgTxt'][0]['typeName'];
  225. deviceType.value = res['msgTxt'][0]['type'];
  226. }
  227. }
  228. if (result) {
  229. deviceOptions.value = [];
  230. deviceOptions.value = result.map((item, index) => {
  231. return {
  232. label: item['strinstallpos'],
  233. value: item['id'] || item['deviceID'],
  234. strtype: item['strtype'] || item['deviceType'],
  235. strinstallpos: item['strinstallpos'],
  236. devicekind: item['devicekind'],
  237. stationtype: item['stationtype'],
  238. };
  239. });
  240. stationType.value = deviceOptions.value[0]['stationtype'];
  241. if (props.deviceType.startsWith('vehicle')) {
  242. historyType.value = 'vehicle';
  243. } else {
  244. historyType.value = deviceOptions.value[0]['strtype'] || deviceOptions.value[0]['devicekind'];
  245. }
  246. }
  247. if (VENT_PARAM.historyIsMultiple) {
  248. await getForm().setFieldsValue({
  249. gdeviceids: [props.deviceId ? props.deviceId : deviceOptions.value[0] ? deviceOptions.value[0]['value'] : ''],
  250. });
  251. await getForm().updateSchema({
  252. field: 'gdeviceids',
  253. componentProps: {
  254. mode: 'multiple',
  255. maxTagCount: 'responsive',
  256. },
  257. });
  258. } else {
  259. await getForm().setFieldsValue({
  260. gdeviceids: props.deviceId ? props.deviceId : deviceOptions.value[0] ? deviceOptions.value[0]['value'] : '',
  261. });
  262. await getForm().updateSchema({
  263. field: 'gdeviceids',
  264. });
  265. }
  266. }
  267. function resetFormParam() {
  268. const formData = getForm().getFieldsValue();
  269. const pagination = getPaginationRef();
  270. formData['pageNo'] = pagination['current'];
  271. formData['pageSize'] = pagination['pageSize'];
  272. formData['column'] = 'createTime';
  273. if (stationType.value !== 'redis') {
  274. formData['strtype'] = deviceTypeStr.value
  275. ? deviceTypeStr.value
  276. : deviceOptions.value[0]['strtype']
  277. ? deviceOptions.value[0]['strtype']
  278. : props.deviceType + '*';
  279. if (props.sysId) {
  280. formData['sysId'] = props.sysId;
  281. }
  282. return formData;
  283. } else {
  284. const params = {
  285. pageNum: pagination['current'],
  286. pageSize: pagination['pageSize'],
  287. column: pagination['createTime'],
  288. startTime: formData['ttime_begin'],
  289. endTime: formData['ttime_end'],
  290. deviceId: formData['gdeviceids'],
  291. strtype: props.deviceType + '*',
  292. sysId: props.sysId,
  293. interval: intervalMap.get(formData['skip']) ? intervalMap.get(formData['skip']) : '1h',
  294. isEmployee: props.deviceType.startsWith('vehicle') ? false : true,
  295. };
  296. return params;
  297. }
  298. }
  299. async function getDataSource() {
  300. dataSource.value = [];
  301. setLoading(true);
  302. const params = await resetFormParam();
  303. if (stationType.value !== 'redis') {
  304. const result = await defHttp.get({ url: '/safety/ventanalyMonitorData/listdays', params: params });
  305. setPagination({ total: Math.abs(result['datalist']['total']) || 0 });
  306. if (result['datalist']['records'].length > 0) {
  307. dataSource.value = result['datalist']['records'].map((item: any) => {
  308. return Object.assign(item, item['readData']);
  309. });
  310. } else {
  311. dataSource.value = [];
  312. }
  313. } else {
  314. const result = await defHttp.post({ url: '/monitor/history/getHistoryData', params: params });
  315. setPagination({ total: Math.abs(result['total']) || 0 });
  316. dataSource.value = result['records'] || [];
  317. }
  318. setLoading(false);
  319. }
  320. // 列表页面公共参数、方法
  321. const { tableContext, onExportXls, onExportXlsPost } = useListPage({
  322. tableProps: {
  323. // api: list,
  324. columns: props.columnsType ? columns : (props.columns as any[]),
  325. canResize: true,
  326. showTableSetting: false,
  327. showActionColumn: false,
  328. bordered: false,
  329. size: 'small',
  330. scroll: tableScroll,
  331. showIndexColumn: true,
  332. tableLayout: 'auto',
  333. formConfig: {
  334. labelAlign: 'left',
  335. labelWidth: 80,
  336. showAdvancedButton: false,
  337. showSubmitButton: false,
  338. showResetButton: false,
  339. baseColProps: {
  340. xs: 24,
  341. sm: 24,
  342. md: 24,
  343. lg: 9,
  344. xl: 7,
  345. xxl: 4,
  346. },
  347. schemas:
  348. props.formSchemas.length > 0
  349. ? props.formSchemas
  350. : [
  351. {
  352. field: 'ttime_begin',
  353. label: '开始时间',
  354. component: 'DatePicker',
  355. defaultValue: dayjs().startOf('date'),
  356. required: true,
  357. componentProps: {
  358. showTime: true,
  359. valueFormat: 'YYYY-MM-DD HH:mm:ss',
  360. getPopupContainer: getAutoScrollContainer,
  361. },
  362. colProps: {
  363. span: 4,
  364. },
  365. },
  366. {
  367. field: 'ttime_end',
  368. label: '结束时间',
  369. component: 'DatePicker',
  370. defaultValue: dayjs(),
  371. required: true,
  372. componentProps: {
  373. showTime: true,
  374. valueFormat: 'YYYY-MM-DD HH:mm:ss',
  375. getPopupContainer: getAutoScrollContainer,
  376. },
  377. colProps: {
  378. span: 4,
  379. },
  380. },
  381. {
  382. label: computed(() => `${deviceKide.value.startsWith('location') ? '查询人员' : '查询设备'}`),
  383. field: 'gdeviceids',
  384. component: 'Select',
  385. required: true,
  386. componentProps: {
  387. showSearch: true,
  388. filterOption: (input: string, option: any) => {
  389. return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
  390. },
  391. options: deviceOptions,
  392. onChange: (e, option) => {
  393. if (option && (option['strinstallpos'] || option['strtype'] || option['devicekind']))
  394. historyType.value = option['strtype'] || option['devicekind'];
  395. if (option['strtype']) deviceTypeStr.value = option['strtype'];
  396. stationType.value = option['stationtype'];
  397. nextTick(async () => {
  398. await getDataSource();
  399. });
  400. },
  401. },
  402. colProps: {
  403. span: 5,
  404. },
  405. },
  406. {
  407. label: '间隔时间',
  408. field: 'skip',
  409. component: 'Select',
  410. defaultValue: '8',
  411. componentProps: {
  412. options: [
  413. {
  414. label: '1秒',
  415. value: '1',
  416. },
  417. {
  418. label: '5秒',
  419. value: '2',
  420. },
  421. {
  422. label: '10秒',
  423. value: '3',
  424. },
  425. {
  426. label: '30秒',
  427. value: '4',
  428. },
  429. {
  430. label: '1分钟',
  431. value: '5',
  432. },
  433. {
  434. label: '10分钟',
  435. value: '6',
  436. },
  437. {
  438. label: '30分钟',
  439. value: '7',
  440. },
  441. {
  442. label: '1小时',
  443. value: '8',
  444. },
  445. {
  446. label: '1天',
  447. value: '9',
  448. },
  449. ],
  450. },
  451. colProps: {
  452. span: 3,
  453. },
  454. },
  455. ],
  456. // fieldMapToTime: [['tickectDate', ['ttime_begin', 'ttime_end'], '']],
  457. },
  458. // fetchSetting: {
  459. // listField: 'datalist',
  460. // totalField: 'datalist.total',
  461. // },
  462. pagination: {
  463. current: 1,
  464. pageSize: 10,
  465. pageSizeOptions: ['10', '30', '50', '100'],
  466. showQuickJumper: false,
  467. },
  468. beforeFetch() {
  469. const newParams = { ...resetFormParam() };
  470. return newParams;
  471. },
  472. // afterFetch(result) {
  473. // const resultItems = result['records'];
  474. // resultItems.map((item) => {
  475. // Object.assign(item, item['readData']);
  476. // });
  477. // console.log('result---------------->', result);
  478. // return resultItems;
  479. // },
  480. },
  481. exportConfig: {
  482. name: '设备历史列表',
  483. url: getExportXlsUrl,
  484. },
  485. });
  486. //注册table数据
  487. const [registerTable, { reload, setLoading, getForm, setColumns, getPaginationRef, setPagination }] = tableContext;
  488. function onExportXlsFn() {
  489. const params = resetFormParam();
  490. // 判断时间间隔和查询时间区间,数据量下载大时进行提示
  491. if (stationType.value !== 'redis') {
  492. return onExportXls(params);
  493. } else {
  494. return onExportXlsPost(params);
  495. }
  496. }
  497. watchEffect(() => {
  498. if (historyTable.value && dataSource) {
  499. const data = dataSource.value || [];
  500. emit('change', data);
  501. }
  502. });
  503. onMounted(async () => {
  504. await getDeviceList();
  505. if (deviceOptions.value[0]) {
  506. nextTick(async () => {
  507. await getDataSource();
  508. });
  509. }
  510. watch([() => getPaginationRef()['current'], () => getPaginationRef()['pageSize']], async () => {
  511. if (deviceOptions.value[0]) {
  512. if (deviceOptions.value[0]) {
  513. await getDataSource();
  514. }
  515. }
  516. });
  517. });
  518. defineExpose({ setLoading });
  519. </script>
  520. <style scoped lang="less">
  521. @import '/@/design/theme.less';
  522. :deep(.@{ventSpace}-table-body) {
  523. height: auto !important;
  524. }
  525. :deep(.zxm-picker) {
  526. height: 30px !important;
  527. }
  528. .history-table {
  529. width: 100%;
  530. :deep(.jeecg-basic-table-form-container) {
  531. .@{ventSpace}-form {
  532. padding: 0 !important;
  533. border: none !important;
  534. margin-bottom: 0 !important;
  535. .@{ventSpace}-picker,
  536. .@{ventSpace}-select-selector {
  537. width: 100% !important;
  538. height: 100%;
  539. background: #00000017;
  540. border: 1px solid #b7b7b7;
  541. input,
  542. .@{ventSpace}-select-selection-item,
  543. .@{ventSpace}-picker-suffix {
  544. color: #fff;
  545. }
  546. .@{ventSpace}-select-selection-placeholder {
  547. color: #ffffffaa;
  548. }
  549. }
  550. }
  551. .@{ventSpace}-table-title {
  552. min-height: 0 !important;
  553. }
  554. }
  555. .pagination-box {
  556. display: flex;
  557. justify-content: flex-end;
  558. align-items: center;
  559. .page-num {
  560. border: 1px solid #0090d8;
  561. padding: 4px 8px;
  562. margin-right: 5px;
  563. color: #0090d8;
  564. }
  565. .btn {
  566. margin-right: 10px;
  567. }
  568. }
  569. }
  570. </style>