index.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. <template>
  2. <div class="table-box">
  3. <div class="card table-main">
  4. <!-- 表格头部 操作按钮 -->
  5. <div class="table-header">
  6. <div class="header-button-lf">
  7. <el-form :model="pageable" label-width="auto" :inline="true">
  8. <el-form-item label="站号:">
  9. <SelectItem :select-data="selectedData" :select-list="platformList" :is-checkbox="true" @update:selectedItems="selectedItems" style="width: 200px"> </SelectItem>
  10. </el-form-item>
  11. <el-form-item>
  12. <el-button type="primary" @click="handleQuery"> 查询 </el-button>
  13. <el-button style="margin-left: 10px" @click="resetQuery"> 重置 </el-button>
  14. </el-form-item>
  15. </el-form>
  16. </div>
  17. </div>
  18. <!-- 表格主体 -->
  19. <el-table stripe ref="tableRef" :border="true" :data="processTableData" size="small" @sort-change="handleSortChange">
  20. <el-table-column align="left" label="序号" width="80px" :show-overflow-tooltip="true" >
  21. <template #default="scope">
  22. {{ (pageable.pageNum - 1) * pageable.pageSize + scope.$index + 1 }}
  23. </template>
  24. </el-table-column>
  25. <template v-for="item in columns" :key="item">
  26. <el-table-column v-bind="item" :align="item.align ?? 'left'" :reserve-selection="item.type == 'selection'" :sortable="item.sortable" :show-overflow-tooltip="true" >
  27. <template #default="scope">
  28. <template v-if="item.prop === 'tact_state'">
  29. {{findLabelByValue(tactStateList,scope.row.tact_state)}}
  30. </template>
  31. <template v-if="item.prop === 'tact_type'">
  32. {{findLabelByValue(dataTypeList,scope.row.tact_type)}}
  33. </template>
  34. <template v-if="item.prop === 'alarm_on_time_i'">
  35. {{scope.row.alarm_on_time_i?formatDate(scope.row.alarm_on_time_i):'--'}}
  36. </template>
  37. <template v-if="item.prop === 'alarm_off_time_i'">
  38. {{scope.row.alarm_off_time_i?formatDate(scope.row.alarm_off_time_i):'--'}}
  39. </template>
  40. <template v-if="item.prop === 'notice_type'">
  41. {{findLabelByValue(noticeTypeList,scope.row.notice_type)}}
  42. </template>
  43. </template>
  44. </el-table-column>
  45. </template>
  46. <!-- 无数据 -->
  47. <template #empty>
  48. <div class="table-empty">
  49. <slot name="empty">
  50. <img src="@/assets/images/notData.png" alt="notData" />
  51. <div>暂无数据</div>
  52. </slot>
  53. </div>
  54. </template>
  55. </el-table>
  56. <!-- 分页组件 -->
  57. <Pagination :pageable="pageable" :handle-size-change="handleSizeChange" :handle-current-change="handleCurrentChange" />
  58. </div>
  59. </div>
  60. </template>
  61. <script setup lang="ts" name="useProTable">
  62. import Pagination from "@/components/ProTable/components/Pagination.vue";
  63. import SelectItem from "@/components/SelectItem/index.vue";
  64. import {ref, reactive, onMounted, onActivated, onDeactivated, computed} from "vue";
  65. import { ColumnProps } from "@/components/ProTable/interface";
  66. import { getPlatformList, getTacRecordList} from "@/api/modules/allData";
  67. import {Platform} from "@/api/interface";
  68. import {ElTable} from "element-plus";
  69. import {useUserStore} from "@/stores/modules/user";
  70. const pageable = ref<any>({
  71. as_code_list: [],
  72. tact_state_on: true,
  73. tact_state:0,
  74. pageNum: 1,
  75. pageSize: 20,
  76. total: 1
  77. });
  78. const tableRef = ref<InstanceType<typeof ElTable>>();
  79. const as_code_list = ref('')
  80. const timeBegin = ref()
  81. const tact_state =ref(0)
  82. const tactList = [
  83. {
  84. value: 0,
  85. label: '全部',
  86. }
  87. ]
  88. const noticeTypeList= [
  89. {
  90. value: 0,
  91. label: '字幕通知',
  92. },
  93. {
  94. value: 1,
  95. label: '声音通知',
  96. }
  97. ]
  98. const tactStateList= [
  99. {
  100. value: 0,
  101. label: '告警中',
  102. },
  103. {
  104. value: 1,
  105. label: '已消警',
  106. }
  107. ]
  108. const dataTypeList= [
  109. {
  110. value: 0,
  111. label: '能见度',
  112. },
  113. {
  114. value: 1,
  115. label: '风速',
  116. },
  117. {
  118. value: 2,
  119. label: '大气电场',
  120. },{
  121. value: 3,
  122. label: '云量',
  123. },{
  124. value: 4,
  125. label: '云高',
  126. },{
  127. value: 5,
  128. label: '温度',
  129. },{
  130. value: 6,
  131. label: '湿度',
  132. },{
  133. value: 7,
  134. label: '小时雨量',
  135. }
  136. ]
  137. function findLabelByValue(noticeTypeList, value) {
  138. const item = noticeTypeList.find(item => item.value === value);
  139. return item ? item.label : null;
  140. }
  141. const handleSortChange = ({ column, prop, order }) => {
  142. console.log('column:', column);
  143. console.log('prop:', prop);
  144. console.log('order:', order);
  145. };
  146. // 查询功能
  147. const handleQuery = () => {
  148. pageable.value.pageNum = 1;
  149. getList()
  150. };
  151. //清空查询
  152. const resetQuery = () => {
  153. const allCodes = platformList.value.map(item => item.as_code);
  154. pageable.value.as_code_list = allCodes
  155. selectedData.value = []
  156. as_code_list.value = '';
  157. pageable.value.pageNum = 1;
  158. pageable.value.pageSize =20
  159. pageable.value.total = 0
  160. timeBegin.value = undefined
  161. getList()
  162. };
  163. //搜索站号
  164. const selectedData= ref([])
  165. const selectedItems =(data)=>{
  166. console.log(data)
  167. if(data.length>0){
  168. pageable.value.as_code_list = data
  169. }else {
  170. const firstCode = platformList.value[0]?.as_code ?? null;
  171. pageable.value.as_code_list = firstCode ? [firstCode] : [];
  172. }
  173. };
  174. /**
  175. * @description 每页条数改变
  176. * @param {Number} val 当前条数
  177. * @return void
  178. * */
  179. const handleSizeChange = (val: number) => {
  180. pageable.value.pageSize = val
  181. getList()
  182. };
  183. /**
  184. * @description 当前页改变
  185. * @param {Number} val 当前页
  186. * @return void
  187. * */
  188. const handleCurrentChange = (val: number) => {
  189. pageable.value.pageNum = val
  190. getList()
  191. };
  192. const processTableData = ref([]);
  193. // 表格配置项
  194. const columns = reactive<ColumnProps[]>([
  195. { prop: "as_code", label: "站号" },
  196. { prop: "as_name", label: "站名" },
  197. { prop: "tact_name", label: "策略名称" },
  198. { prop: "tact_state", label: "策略状态" },
  199. { prop: "tact_type", label: "告警类型" },
  200. { prop: "data_value", label: "观测值" },
  201. { prop: "alarm_on_time_i", label: "告警时间",width:150},
  202. { prop: "alarm_off_time_i", label: "消警时间",width:150},
  203. { prop: "notice_type", label: "通知方式" },
  204. { prop: "remark", label: "告警说明",width:400 }
  205. ]);
  206. const getList = async () => {
  207. if(pageable.value.as_code_list===undefined||pageable.value.as_code_list.length===0){
  208. // 没有站不给数据
  209. processTableData.value = []
  210. pageable.value.total=0
  211. return;
  212. }
  213. const { data } = await getTacRecordList(pageable.value);
  214. processTableData.value = data.list
  215. pageable.value.total = data.total
  216. };
  217. let intervalId;
  218. onMounted(() => {
  219. const allCodes = platformList.value.map(item => item.as_code);
  220. pageable.value.as_code_list = allCodes
  221. getList();
  222. });
  223. onActivated(() => {
  224. intervalId = setInterval(() => {
  225. getList();
  226. }, 60 * 1000);
  227. });
  228. onDeactivated(() => {
  229. clearInterval(intervalId);
  230. });
  231. const userStore = useUserStore();
  232. const platformList =ref<any>(computed(() => userStore.stations))
  233. function formatDate(timestamp) {
  234. const date = new Date(timestamp * 1000); // 将时间戳转换为毫秒
  235. const year = date.getFullYear();
  236. const month = String(date.getMonth() + 1).padStart(2, '0');
  237. const day = String(date.getDate()).padStart(2, '0');
  238. const hours = String(date.getHours()).padStart(2, '0');
  239. const minutes = String(date.getMinutes()).padStart(2, '0');
  240. return `${year}-${month}-${day} ${hours}:${minutes}`;
  241. }
  242. </script>