HandlerHistoryTable.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <template>
  2. <div class="handler-history-table">
  3. <BasicTable ref="handlerHistory" @register="registerTable" />
  4. </div>
  5. </template>
  6. <script lang="ts" name="system-user" setup>
  7. //ts语法
  8. import { watch, ref, defineExpose } from 'vue';
  9. import { BasicTable } from '/@/components/Table';
  10. import { useListPage } from '/@/hooks/system/useListPage';
  11. import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
  12. import { defHttp } from '/@/utils/http/axios';
  13. const list = (params) => defHttp.get({ url: '/safety/ventanalyDevicesetLog/list', params });
  14. const props = defineProps({
  15. columnsType: {
  16. type: String,
  17. required: true,
  18. },
  19. deviceType: {
  20. type: String,
  21. required: true,
  22. },
  23. deviceListApi: {
  24. type: Function,
  25. required: true,
  26. },
  27. designScope: {
  28. type: String,
  29. },
  30. sysId: {
  31. type: String,
  32. },
  33. scroll: {
  34. type: Object,
  35. default: () => {}
  36. }
  37. });
  38. const handlerHistory = ref()
  39. const columns = ref([])
  40. watch(
  41. () => {
  42. return props.columnsType;
  43. },
  44. (newVal) => {
  45. const column = getTableHeaderColumns(newVal)
  46. debugger
  47. if (column && column.length < 1) {
  48. const arr = newVal.split('_')
  49. const columnKey = arr.reduce((prev, cur, index) => {
  50. if (index !== arr.length - 2) {
  51. return prev + '_' + cur
  52. } else {
  53. return prev
  54. }
  55. })
  56. columns.value = getTableHeaderColumns(arr[0] + '_history');
  57. } else {
  58. columns.value = column
  59. }
  60. if (handlerHistory.value) reload()
  61. },
  62. {
  63. immediate: true
  64. }
  65. );
  66. // 列表页面公共参数、方法
  67. const { tableContext } = useListPage({
  68. tableProps: {
  69. api: list,
  70. columns: columns,
  71. canResize: true,
  72. showTableSetting: false,
  73. showActionColumn: false,
  74. bordered: false,
  75. size: 'small',
  76. scroll: props.scroll,
  77. formConfig: {
  78. labelAlign: 'left',
  79. showAdvancedButton: false,
  80. schemas: [
  81. {
  82. label: '时间范围',
  83. field: 'createTime',
  84. component: 'RangePicker',
  85. componentProps: {
  86. valueFormat: 'YYYY-MM-DD HH:mm:ss',
  87. },
  88. },
  89. {
  90. label: '查询设备',
  91. field: 'gdeviceid',
  92. component: 'ApiSelect',
  93. componentProps: {
  94. api: props.deviceListApi,
  95. resultField: 'records',
  96. labelField: 'strname',
  97. valueField: 'id',
  98. },
  99. },
  100. ],
  101. fieldMapToTime: [['createTime', ['createTime_begin', 'createTime_end'], '']],
  102. },
  103. fetchSetting: {
  104. listField: 'records',
  105. },
  106. pagination: {
  107. current: 1,
  108. pageSize: 10,
  109. pageSizeOptions: ['5', '10', '20'],
  110. },
  111. beforeFetch(params) {
  112. params.gdevicetype = props.deviceType + '*';
  113. if (props.sysId) {
  114. params.sysId = props.sysId;
  115. }
  116. },
  117. },
  118. });
  119. //注册table数据
  120. const [registerTable, { reload, setLoading }] = tableContext;
  121. defineExpose({ setLoading })
  122. </script>
  123. <style scoped lang="less">
  124. @ventSpace: zxm;
  125. // :deep(.@{ventSpace}-table-body) {
  126. // height: auto !important;
  127. // }
  128. :deep(.zxm-picker){
  129. height: 30px !important;
  130. }
  131. .handler-history-table {
  132. width: 100%;
  133. :deep(.jeecg-basic-table-form-container) {
  134. .@{ventSpace}-form {
  135. padding: 0 !important;
  136. border: none !important;
  137. margin-bottom: 0 !important;
  138. .@{ventSpace}-picker,
  139. .@{ventSpace}-select-selector {
  140. width: 100% !important;
  141. height: 100%;
  142. background: #00000017;
  143. border: 1px solid #b7b7b7;
  144. input,
  145. .@{ventSpace}-select-selection-item,
  146. .@{ventSpace}-picker-suffix {
  147. color: #fff;
  148. }
  149. .@{ventSpace}-select-selection-placeholder {
  150. color: #ffffffaa;
  151. }
  152. }
  153. }
  154. .@{ventSpace}-table-title {
  155. min-height: 0 !important;
  156. }
  157. }
  158. }
  159. </style>