瀏覽代碼

[Feat 0000] 历史数据支持多项设备查询

houzekong 2 周之前
父節點
當前提交
dd3f4920b5

+ 1 - 1
src/views/vent/comment/history/HistoryTable.vue

@@ -211,7 +211,7 @@
     await form.validate();
     const formData = form.getFieldsValue();
     deviceInfo.value = deviceOptions.value.find((opt) => {
-      return opt.value === formData.gdeviceid;
+      return opt.value === formData.gdeviceids.split(',')[0];
     }) as Record<string, unknown>;
     const code = (deviceInfo.value.deviceType || props.deviceCode.concat('*')) as string;
     await fetchData(formData, code, deviceInfo.value);

+ 5 - 2
src/views/vent/comment/history/history.data.ts

@@ -1,6 +1,7 @@
 import dayjs from 'dayjs';
 import { BasicTableProps, PaginationProps, FormProps, FormSchema } from '/@/components/Table';
 import { getAutoScrollContainer } from '/@/utils/common/compUtils';
+import { get } from 'lodash-es';
 
 /**
  * 默认的查询表单项props
@@ -42,13 +43,15 @@ export const getDefaultSchemas: (dictOptions: any[], deviceOptions: any[]) => Fo
   },
   {
     label: '查询设备',
-    field: 'gdeviceid',
+    field: 'gdeviceids',
     component: 'Select',
     required: true,
-    defaultValue: deviceOptions[0].value,
+    defaultValue: [get(deviceOptions, '[0].value', '')],
     componentProps: {
       options: deviceOptions,
       // onChange: (e, option) => {
+      mode: 'multiple',
+      maxTagCount: 'responsive',
       //   nextTick(async () => {
       //     await getDataSource();
       //   });

+ 8 - 4
src/views/vent/monitorManager/comment/HistoryTable.vue

@@ -255,7 +255,9 @@
       stationType.value = deviceOptions.value[0]['stationtype'];
       historyType.value = deviceOptions.value[0]['strtype'] || deviceOptions.value[0]['devicekind'];
     }
-    await getForm().setFieldsValue({ gdeviceid: props.deviceId ? props.deviceId : deviceOptions.value[0] ? deviceOptions.value[0]['value'] : '' });
+    await getForm().setFieldsValue({
+      gdeviceids: props.deviceId ? [props.deviceId] : deviceOptions.value[0] ? [deviceOptions.value[0]['value']] : [''],
+    });
   }
 
   function resetFormParam() {
@@ -282,7 +284,7 @@
         column: pagination['createTime'],
         startTime: formData['ttime_begin'],
         endTime: formData['ttime_end'],
-        deviceId: formData['gdeviceid'],
+        deviceId: formData['gdeviceids'],
         strtype: props.deviceType + '*',
         sysId: props.sysId,
         interval: intervalMap.get(formData['skip']) ? intervalMap.get(formData['skip']) : '1h',
@@ -377,15 +379,17 @@
                 },
                 {
                   label: computed(() => `${deviceKide.value.startsWith('location') ? '查询人员' : '查询设备'}`),
-                  field: 'gdeviceid',
+                  field: 'gdeviceids',
                   component: 'Select',
-                  defaultValue: props.deviceId ? props.deviceId : deviceOptions.value[0] ? deviceOptions.value[0]['value'] : '',
+                  defaultValue: props.deviceId ? [props.deviceId] : deviceOptions.value[0] ? [deviceOptions.value[0]['value']] : [''],
                   required: true,
                   componentProps: {
                     showSearch: true,
                     filterOption: (input: string, option: any) => {
                       return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
                     },
+                    mode: 'multiple',
+                    maxTagCount: 'responsive',
                     options: deviceOptions,
                     onChange: (e, option) => {
                       if (option && (option['strinstallpos'] || option['strtype'] || option['devicekind']))