餐饮油烟智能监测与监管一体化平台
riku
2026-03-04 49e2b7ea866695957633855f71f9e2f943b11ec7
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
<script>
import axiosInstance from '@/utils/request.js'
export default {
  props: {
    devId: String,
    exceptionValue: String,
    beginTime: String,
    endTime: String,
  },
  emits: ['submitExceptionData'],
  data() {
    return {
      //某个异常类型的全部数据
      exceptionData: [],
    }
  },
  methods: {
    requestExceptionData() {
      axiosInstance
        .get('/fume/abnormalthree', {
          params: {
            devId: this.devId,
            exceptionValue: this.exceptionValue,
            beginTime: this.beginTime,
            endTime: this.endTime,
          },
        })
        .then((result) => {
          //将返回的结果传递给父组件
          this.$emit('submitExceptionData', result.data.data)
        })
    },
  },
}
</script>
 
<template>
  <el-link @click="requestExceptionData" class="text"><slot /></el-link>
</template>
 
<style lang="scss" scoped>
.text {
  color: #000000;
}
</style>