|
|
|
<template>
|
|
|
|
<el-form :inline="true" :model="searchDevice" ref="searchDeviceForm">
|
|
|
|
<el-form-item label="选择站点">
|
|
|
|
<el-select v-model="searchDevice.deviceId" placeholder="请选择站点" @change="change">
|
|
|
|
<el-option label="全部" value></el-option>
|
|
|
|
<el-option :label="item.address" :value="item.deviceId" v-for="item in devices" :key="item.deviceId"></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="选择日期">
|
|
|
|
<el-date-picker
|
|
|
|
v-model="searchDevice.date"
|
|
|
|
type="daterange"
|
|
|
|
range-separator="-"
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
></el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" @click="onSubmit">查询</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { reactive, ref, computed, defineEmits, watch } from 'vue';
|
|
|
|
import { useStore } from 'vuex';
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
|
|
|
const emit = defineEmits(['search']);
|
|
|
|
const searchDevice = reactive({ deviceId: '', date: '' });
|
|
|
|
const searchDeviceForm = ref(null); // form
|
|
|
|
const store = useStore();
|
|
|
|
const devices = computed(() => store.state.device.devices);
|
|
|
|
const currentDeviceId = computed(() => store.state.device.currentDeviceId); // 正在操作的设备的id
|
|
|
|
|
|
|
|
// 监听currentDeviceId
|
|
|
|
watch(
|
|
|
|
() => currentDeviceId.value,
|
|
|
|
newValue => {
|
|
|
|
if (newValue && searchDevice.deviceId !== newValue) {
|
|
|
|
searchDevice.deviceId = newValue;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ immediate: true },
|
|
|
|
);
|
|
|
|
|
|
|
|
const change = e => {
|
|
|
|
store.commit('device/setCurrentDeviceId', e);
|
|
|
|
};
|
|
|
|
|
|
|
|
// 提交
|
|
|
|
const onSubmit = () => {
|
|
|
|
searchDeviceForm.value.validate(() => {
|
|
|
|
const { deviceId, date } = searchDevice;
|
|
|
|
if (date) {
|
|
|
|
const start = dayjs(date[0]).format('X');
|
|
|
|
const end = dayjs(date[1]).format('X');
|
|
|
|
const daterange = [start, end];
|
|
|
|
emit('search', { deviceId, date: daterange });
|
|
|
|
} else {
|
|
|
|
emit('search', { deviceId, date });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
</script>
|