bug fix and performance improvements

This commit is contained in:
2023-07-19 15:13:25 +08:00
parent 1dffb878cd
commit 0f582dec46
25 changed files with 463 additions and 137 deletions

View File

@ -1,7 +1,35 @@
<script setup></script>
<script setup>
import StatisticsPanel from "@/views/components/StatisticsPanel.vue";
import { ref } from "vue";
const statisticsList = ref([
{
label: "专利数量",
value: 32,
unit: "项",
},
{
label: "成果数量",
value: 13,
unit: "个",
},
{
label: "专家数量",
value: 1,
unit: "位",
},
{
label: "实验室数量",
value: 6,
unit: "家",
},
]);
</script>
<template>
<div class="app-container">研究机构后台</div>
<div class="app-container">
<statistics-panel :list="statisticsList" />
</div>
</template>
<style lang="scss" scoped></style>