bug fix and performance improvements
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user