|
@@ -9,16 +9,18 @@
|
|
|
>
|
|
>
|
|
|
<template #search >
|
|
<template #search >
|
|
|
<a-space>
|
|
<a-space>
|
|
|
- <InputTsx :styles="{minWidth: '120px'}" v-model:value="serviceParams.devId" placeholder="请输入设备ID" />
|
|
|
|
|
- <!-- <SelectTsx
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <SelectTsx
|
|
|
:request="async () => (await SpaceController.devicePage({page: 1, pageSize: 10, deviceName: ''})).data"
|
|
:request="async () => (await SpaceController.devicePage({page: 1, pageSize: 10, deviceName: ''})).data"
|
|
|
:keys="{
|
|
:keys="{
|
|
|
name: 'deviceName',
|
|
name: 'deviceName',
|
|
|
value: 'deviceId',
|
|
value: 'deviceId',
|
|
|
key: 'deviceId'
|
|
key: 'deviceId'
|
|
|
}"
|
|
}"
|
|
|
- /> -->
|
|
|
|
|
- <SelectTsx
|
|
|
|
|
|
|
+ v-model:value="serviceParams.devId"
|
|
|
|
|
+ />
|
|
|
|
|
+ <InputTsx :styles="{minWidth: '120px'}" v-model:value="serviceParams.eventType" placeholder="请输入算子ID" />
|
|
|
|
|
+ <!-- <SelectTsx
|
|
|
style="width: 100px"
|
|
style="width: 100px"
|
|
|
v-model:value="serviceParams.eventType"
|
|
v-model:value="serviceParams.eventType"
|
|
|
:request="async () => await AiboxController.eventType"
|
|
:request="async () => await AiboxController.eventType"
|
|
@@ -27,7 +29,7 @@
|
|
|
value: 'EventType',
|
|
value: 'EventType',
|
|
|
key: 'EventType'
|
|
key: 'EventType'
|
|
|
}"
|
|
}"
|
|
|
- />
|
|
|
|
|
|
|
+ /> -->
|
|
|
<a-range-picker v-model:value="times" format="YYYY/MM/DD'" />
|
|
<a-range-picker v-model:value="times" format="YYYY/MM/DD'" />
|
|
|
<a-button type="primary" @click="search" >搜索</a-button>
|
|
<a-button type="primary" @click="search" >搜索</a-button>
|
|
|
</a-space>
|
|
</a-space>
|
|
@@ -113,7 +115,7 @@ const tableProDom = ref()
|
|
|
const times = ref()
|
|
const times = ref()
|
|
|
|
|
|
|
|
const serviceParams = ref({
|
|
const serviceParams = ref({
|
|
|
- devId: '',
|
|
|
|
|
|
|
+ devId: null,
|
|
|
eventType: '',
|
|
eventType: '',
|
|
|
start: '',
|
|
start: '',
|
|
|
end: ''
|
|
end: ''
|