|
@@ -2,9 +2,47 @@
|
|
|
defineOptions({
|
|
|
name: "workerDrak"
|
|
|
});
|
|
|
-import { ref } from "vue";
|
|
|
+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/index.vue";
|
|
|
+import personList from "@/components/personList/index.vue";
|
|
|
+import qvanping from "@/assets/rank/qvanping@2x.png";
|
|
|
+import type { TabsPaneContext } from "element-plus";
|
|
|
+const router = useRouter();
|
|
|
const value = ref("");
|
|
|
+const activeName = ref("1");
|
|
|
+// 柱状图
|
|
|
+const barEchartsRef = ref();
|
|
|
+// 维度表格
|
|
|
+const personListRef = ref();
|
|
|
+const barEchartsList = reactive({
|
|
|
+ zongfen: {
|
|
|
+ title: "总得分"
|
|
|
+ },
|
|
|
+ shuliang: {
|
|
|
+ title: "数量维度"
|
|
|
+ },
|
|
|
+ xiaolve: {
|
|
|
+ title: "效率维度"
|
|
|
+ },
|
|
|
+ zhiliang: {
|
|
|
+ title: "质量维度"
|
|
|
+ },
|
|
|
+ nandu: {
|
|
|
+ title: "难度维度"
|
|
|
+ },
|
|
|
+ qiandu: {
|
|
|
+ title: "强度维度"
|
|
|
+ },
|
|
|
+ jiaoxue: {
|
|
|
+ title: "教学维度"
|
|
|
+ },
|
|
|
+ keyan: {
|
|
|
+ title: "科研维度"
|
|
|
+ }
|
|
|
+});
|
|
|
const options = [
|
|
|
{
|
|
|
value: "Option1",
|
|
@@ -27,6 +65,14 @@ const options = [
|
|
|
label: "Option5"
|
|
|
}
|
|
|
];
|
|
|
+const handleClick = (tab: TabsPaneContext, event: Event) => {
|
|
|
+ // console.log(tab, event);
|
|
|
+ barEchartsRef.value.dataList(tab.props);
|
|
|
+};
|
|
|
+const fullBig = (item: any) => {
|
|
|
+ console.log(item);
|
|
|
+ router.push({ name: "full-big", params: { ...item } });
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
@@ -103,6 +149,179 @@ const options = [
|
|
|
<div class="flex mr-2">
|
|
|
<radar />
|
|
|
</div>
|
|
|
+ <el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
|
|
|
+ <el-tab-pane label="总览" name="1">
|
|
|
+ <div class="flex mr-8">
|
|
|
+ <rankTable />
|
|
|
+ </div>
|
|
|
+ <!-- 总得分 -->
|
|
|
+ <div class="mt-5 pr-8 w-full h-60">
|
|
|
+ <barEcharts ref="barEchartsRef" :title="barEchartsList.zongfen" />
|
|
|
+ </div>
|
|
|
+ <!-- 维度得分 -->
|
|
|
+ <div class="mt-5 pr-8 w-full h-60 flex justify-between item-center">
|
|
|
+ <div class="w-1/2 h-full">
|
|
|
+ <barEcharts :title="barEchartsList.shuliang" />
|
|
|
+ </div>
|
|
|
+ <div class="w-1/2 h-full">
|
|
|
+ <barEcharts :title="barEchartsList.xiaolve" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="mt-5 pr-8 w-full h-60 flex justify-between item-center">
|
|
|
+ <div class="w-1/2 h-full">
|
|
|
+ <barEcharts
|
|
|
+ ref="barEchartsRef"
|
|
|
+ :title="barEchartsList.zhiliang"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="w-1/2 h-full">
|
|
|
+ <barEcharts ref="barEchartsRef" :title="barEchartsList.nandu" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="mt-5 pr-8 w-full h-60 flex justify-between item-center">
|
|
|
+ <div class="w-1/2 h-full">
|
|
|
+ <barEcharts ref="barEchartsRef" :title="barEchartsList.qiandu" />
|
|
|
+ </div>
|
|
|
+ <div class="w-1/2 h-full">
|
|
|
+ <barEcharts ref="barEchartsRef" :title="barEchartsList.jiaoxue" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="mt-5 pr-8 w-full h-60 flex justify-between item-center">
|
|
|
+ <div class="w-1/2 h-full">
|
|
|
+ <barEcharts ref="barEchartsRef" :title="barEchartsList.keyan" />
|
|
|
+ </div>
|
|
|
+ <div class="w-1/2 h-full">
|
|
|
+ <!-- <barEcharts :title="barEchartsList.kexue" /> -->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="数量" name="2">
|
|
|
+ <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(barEchartsList.shuliang)"
|
|
|
+ >
|
|
|
+ <img class="w-full h-full" :src="qvanping" alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <barEcharts
|
|
|
+ ref="barEchartsRef"
|
|
|
+ class="w-[1260px] h-[260px] mt-5"
|
|
|
+ :title="barEchartsList.shuliang"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="效率" name="3">
|
|
|
+ <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(barEchartsList.xiaolve)"
|
|
|
+ >
|
|
|
+ <img class="w-full h-full" :src="qvanping" alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <barEcharts
|
|
|
+ ref="barEchartsRef"
|
|
|
+ class="w-[1260px] h-[260px] mt-5"
|
|
|
+ :title="barEchartsList.xiaolve"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="质量" name="4">
|
|
|
+ <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(barEchartsList.zhiliang)"
|
|
|
+ >
|
|
|
+ <img class="w-full h-full" :src="qvanping" alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <barEcharts
|
|
|
+ ref="barEchartsRef"
|
|
|
+ class="w-[1260px] h-[260px] mt-5"
|
|
|
+ :title="barEchartsList.zhiliang"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="难度" name="5">
|
|
|
+ <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(barEchartsList.nandu)"
|
|
|
+ >
|
|
|
+ <img class="w-full h-full" :src="qvanping" alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <barEcharts
|
|
|
+ ref="barEchartsRef"
|
|
|
+ class="w-[1260px] h-[260px] mt-5"
|
|
|
+ :title="barEchartsList.nandu"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="强度" name="6">
|
|
|
+ <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(barEchartsList.qiandu)"
|
|
|
+ >
|
|
|
+ <img class="w-full h-full" :src="qvanping" alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <barEcharts
|
|
|
+ ref="barEchartsRef"
|
|
|
+ class="w-[1260px] h-[260px] mt-5"
|
|
|
+ :title="barEchartsList.qiandu"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="教学" name="7">
|
|
|
+ <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(barEchartsList.jiaoxue)"
|
|
|
+ >
|
|
|
+ <img class="w-full h-full" :src="qvanping" alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <barEcharts
|
|
|
+ ref="barEchartsRef"
|
|
|
+ class="w-[1260px] h-[260px] mt-5"
|
|
|
+ :title="barEchartsList.jiaoxue"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="科研" name="8">
|
|
|
+ <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(barEchartsList.keyan)"
|
|
|
+ >
|
|
|
+ <img class="w-full h-full" :src="qvanping" alt="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <barEcharts
|
|
|
+ ref="barEchartsRef"
|
|
|
+ class="w-[1260px] h-[260px] mt-5"
|
|
|
+ :title="barEchartsList.keyan"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|