|
@@ -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']))
|