智慧园区前端大屏
shuishen
2024-12-17 a07f79573d52f61ba6ec97766e9abc12309eadee
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
<!--
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2023-03-13 14:54:26
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2024-11-08 12:30:06
 * @FilePath: \bigScreen\src\views\companyInfo\components\box\occurStatistics.vue
 * @Description: 
 * 
 * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
-->
<script setup>
import publicContent from "./publicContent.vue"
import { getList } from "@/api/rescueTeam/rescueTeam"
import { reactive } from "vue"
 
const loading = ref(false)
 
const tableData = ref([])
const pages = {
  page: 1,
  pageSize: 13,
  total: 0,
}
 
let data = reactive({
  companyInfo: {}
})
 
onMounted(() => {
  data.companyInfo = JSON.parse(localStorage.getItem('companyInfo'))
  getLists()
})
 
</script>
 
<template>
  <div class="search-box">
    1111111111111111
  </div>
</template>
 
<style lang="scss" scoped></style>