<!--
|
* @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>
|