riku
2024-05-07 c4e9d054916c3f085329a67c7664b4c54f9137f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<template>
  <BaseCard size="middle-s" direction="down">
    <template #content>
      <el-form :inline="true">
        <OptionMission v-model="mission"></OptionMission>
        <OptionType v-model="formSearch.type"></OptionType>
        <OptionDevice
          :type="formSearch.type"
          v-model="formSearch.deviceCode"
        ></OptionDevice>
        <OptionTime v-model="formSearch.timeArray"></OptionTime>
        <el-button type="primary" class="el-button-custom" @click="handleClick">
          分析
        </el-button>
      </el-form>
    </template>
  </BaseCard>
</template>
 
<script>
// 搜索框
export default {
  props: {
    searchTime: Array
  },
  data() {
    return {
      mission: {},
      formSearch: {
        type: '',
        deviceCode: '',
        timeArray: []
      }
    };
  },
  emits: ['search'],
  watch: {
    searchTime(nV, oV) {
      if (nV != oV) {
        this.formSearch.timeArray = this.searchTime;
      }
    },
    mission(nV, oV) {
      if (nV != oV) {
        this.formSearch.timeArray = [
          new Date(nV.startTime),
          new Date(nV.endTime)
        ];
        this.formSearch.type = nV.deviceType;
        this.formSearch.deviceCode = nV.deviceCode;
      }
    }
  },
  methods: {
    handleClick() {
      this.$emit('search', { ...this.formSearch, mission: this.mission });
    }
  }
};
</script>
<style lang="scss">
.map-date-selector {
  display: inline-block;
  position: relative;
  /* left: 0;
    right: 0;
    top: 0px; */
  /* padding: 0 4px; */
  /* color: ffffffbd; */
  /* background-color: antiquewhite; */
}
 
.p-events-auto {
}
</style>