|
@@ -3,10 +3,27 @@ import pie1 from './teacher/pie1.vue'
|
|
|
import pie2 from './teacher/pie2.vue'
|
|
|
import pie3 from './teacher/pie3.vue'
|
|
|
|
|
|
-import teacher1 from '~/assets/img/teacher/teacher1.png'
|
|
|
-import teacher2 from '~/assets/img/teacher/teacher2.png'
|
|
|
import top from '~/assets/img/teacher/top.png'
|
|
|
|
|
|
+const baseInfo = ref([
|
|
|
+ {
|
|
|
+ title: "参与教师",
|
|
|
+ detailNum:'0111',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "开课数量",
|
|
|
+ detailNum:'0911',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "教研数量",
|
|
|
+ detailNum:'0911',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "资源数量",
|
|
|
+ detailNum:'8911',
|
|
|
+ }
|
|
|
+]);
|
|
|
+
|
|
|
const secSchollTeacherTitle = ref(["全科教师", "协同数量", "教研次数", "教学效果","上传资源"]);
|
|
|
const secSchollTeacherContent = ref([
|
|
|
{ a1: "花花", a2: 28, a3: 8, a4: 5,a5:5, },
|
|
@@ -22,7 +39,6 @@ const secSchollTeacher2Content = ref([
|
|
|
{ a1: "花花", a2: 26, a3: 8, a4: 5,a5:5, },
|
|
|
{ a1: "花花", a2: 26, a3: 8, a4: 5,a5:5, },
|
|
|
{ a1: "花花", a2: 26, a3: 8, a4: 5,a5:5, },
|
|
|
-
|
|
|
])
|
|
|
|
|
|
</script>
|
|
@@ -32,13 +48,10 @@ const secSchollTeacher2Content = ref([
|
|
|
<div class="flex flex-col justify-between" style="width:49%;">
|
|
|
<div class="w-full ">
|
|
|
<div class="flex flex-row justify-between ">
|
|
|
- <div>
|
|
|
- <h4>参与教师</h4>
|
|
|
- <div>1111</div>
|
|
|
+ <div v-for="(item,index) in baseInfo" :key="index" >
|
|
|
+ <h4 class="text-lg font-medium">{{ item.title }}</h4>
|
|
|
+ <div class="border-blue-500/50 text-4xl mt-2">{{ item.detailNum }}</div>
|
|
|
</div>
|
|
|
- <div>22</div>
|
|
|
- <div>33</div>
|
|
|
- <div>44</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="w-full ">
|
|
@@ -147,4 +160,5 @@ const secSchollTeacher2Content = ref([
|
|
|
.normalTable_contentDetile div{
|
|
|
text-align: center;
|
|
|
}
|
|
|
+
|
|
|
</style>
|