123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <script setup lang="ts">
- defineOptions({
- name: "departmentDrank"
- });
- import { ref, reactive } from "vue";
- import { useRouter } from "vue-router";
- import radar from "@/components/echarts/radar.vue";
- import barEcharts from "@/components/echarts/bar.vue";
- import rankTable from "@/components/rankTable/draw.vue";
- import personList from "@/components/personList/index.vue";
- import qvanping from "@/assets/rank/qvanping@2x.png";
- import seachData from "./componements/seach.vue";
- import {
- getPersonDimensionChartsList,
- getPersonDimensionChartsRanking,
- getAssessmentList,
- getChartsList
- } from "@/api/draw";
- import type { TabsPaneContext } from "element-plus";
- const router = useRouter();
- const activeName = ref("1");
- // 柱状图
- const barEchartsRef = ref();
- const radarRef = ref();
- const rankTableRef = ref();
- const barDimEchartsRef = ref();
- const dataList = reactive({
- dimName: []
- });
- const seachParams = ref();
- const getPersonDimensionChartsListApi = async (
- dimensionName?: string,
- dimId?: number | string
- ) => {
- const { code, data } = await getPersonDimensionChartsList({
- ...seachParams.value,
- dimId,
- dimensionName,
- type: 1
- });
- if (code == 200) {
- if (data.length > 0) {
- data.dimensionList.map(item => {
- dataList.dimName.push({
- name: item.dimName,
- id: item.dimId
- });
- });
- if (dimensionName && dimId) {
- personListRef.value.init(data);
- } else {
- radarRef.value.initChart(data);
- rankTableRef.value.init(data, "科室");
- }
- }
- }
- // console.log(res);
- };
- const getPersonDimensionChartsRankingApi = async (
- dimensionName?: string,
- dimId?: number | string
- ) => {
- const { code, data } = await getPersonDimensionChartsRanking({
- ...seachParams.value,
- dimId,
- dimensionName,
- type: 1
- });
- if (code == 200) {
- if (data.length > 0) {
- barEchartsRef.value.init(data);
- }
- }
- };
- const init = item => {
- seachParams.value = item;
- getPersonDimensionChartsListApi();
- getPersonDimensionChartsRankingApi();
- barDimEchartsRef.value.init(seachParams.value, 1);
- };
- // 维度表格
- const personListRef = ref();
- const handleClick = (tab: TabsPaneContext, event: Event) => {
- console.log(tab, event);
- if (tab.props.label == "总览") {
- getPersonDimensionChartsListApi();
- getPersonDimensionChartsRankingApi();
- } else {
- getPersonDimensionChartsListApi(tab.props.label, tab.props.name);
- getPersonDimensionChartsRankingApi(tab.props.label, tab.props.name);
- }
- barEchartsRef.value.init(tab.props);
- };
- const fullBig = (item: any) => {
- router.push({
- path: "/fullBig",
- query: { title: item, ...seachParams.value, type: 1 }
- });
- };
- </script>
- <template>
- <div class="w-[100%]">
- <div class="w-[100%]">
- <seachData @handClick="init" />
- <div v-if="dataList.dimName.length > 0">
- <div class="flex mr-2">
- <radar ref="radarRef" />
- </div>
- <el-tabs
- v-model="activeName"
- class="demo-tabs"
- :lazy="true"
- @tab-click="handleClick"
- >
- <el-tab-pane label="总览" name="1">
- <div class="flex mr-8">
- <rankTable ref="rankTableRef" />
- </div>
- <!-- 总得分 -->
- <div class="mt-5 pr-8 w-full h-60">
- <barEcharts ref="barEchartsRef" :title="'总得分'" />
- </div>
- <!-- 维度得分 -->
- <div
- v-for="(item, index) in dataList.dimName"
- :key="index"
- class="flex justify-between flex-wrap items-center"
- >
- <div class="mt-5 pr-8 w-1/2 h-60">
- <barDimEcharts ref="barDimEchartsRef" :title="item.name" />
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane
- v-for="(item, index) in dataList.dimName"
- :key="index"
- :label="item.name"
- :name="item.id"
- :lazy="true"
- >
- <div class="w-full">
- <div class="flex justify-between">
- <personList ref="personListRef" class="w-11/12" />
- <div
- class="w-[30px] h-[30px] mr-10 cursor-pointer"
- @click="fullBig(item.name)"
- >
- <img class="w-full h-full" :src="qvanping" alt="" />
- </div>
- </div>
- <div class="w-full h-60 mt-5 pr-8">
- <barEcharts ref="barEchartsRef" :title="item.name" />
- </div>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- </div>
- </div>
- </template>
|