diff --git a/src/assets/images/sjfx/enrol/title1.png b/src/assets/images/sjfx/enrol/title1.png new file mode 100644 index 0000000..52ae30c Binary files /dev/null and b/src/assets/images/sjfx/enrol/title1.png differ diff --git a/src/assets/images/sjfx/enrol/title2.png b/src/assets/images/sjfx/enrol/title2.png new file mode 100644 index 0000000..6146fd4 Binary files /dev/null and b/src/assets/images/sjfx/enrol/title2.png differ diff --git a/src/assets/images/sjfx/enrol/title3.png b/src/assets/images/sjfx/enrol/title3.png new file mode 100644 index 0000000..a59b607 Binary files /dev/null and b/src/assets/images/sjfx/enrol/title3.png differ diff --git a/src/assets/images/sjfx/enrol/title4.png b/src/assets/images/sjfx/enrol/title4.png new file mode 100644 index 0000000..33367bb Binary files /dev/null and b/src/assets/images/sjfx/enrol/title4.png differ diff --git a/src/assets/images/sjfx/enrol/title5.png b/src/assets/images/sjfx/enrol/title5.png new file mode 100644 index 0000000..7d43a06 Binary files /dev/null and b/src/assets/images/sjfx/enrol/title5.png differ diff --git a/src/assets/images/sjfx/enrol/title6.png b/src/assets/images/sjfx/enrol/title6.png new file mode 100644 index 0000000..4deed8a Binary files /dev/null and b/src/assets/images/sjfx/enrol/title6.png differ diff --git a/src/assets/images/sjfx/enrol/title7.png b/src/assets/images/sjfx/enrol/title7.png new file mode 100644 index 0000000..e3fb8b9 Binary files /dev/null and b/src/assets/images/sjfx/enrol/title7.png differ diff --git a/src/view/analyze.vue b/src/view/analyze.vue index e690a13..e570cf6 100644 --- a/src/view/analyze.vue +++ b/src/view/analyze.vue @@ -125,7 +125,7 @@
-
+
@@ -134,6 +134,12 @@
+ +
@@ -146,6 +152,7 @@ import { onBeforeUnmount, computed, } from "vue"; +import DialogEnrol from "./dialog/dialogEnrol.vue"; import right2 from "./echart_analyze/right2.vue"; import right1 from "./echart_analyze/right1.vue"; import jypx from "./echart_analyze/jypx.vue"; @@ -166,6 +173,99 @@ import jypx1 from "@/assets/images/sjfx/pxrc.png"; import jypx2 from "@/assets/images/sjfx/gygws.png"; import Map from "./echart_analyze/map.vue"; const showR = ref(false); //loading +// 入学分析数据 +const dialogShowEnrol = ref(false) +const dataTab = reactive({ + url: "", + title: "", + list1: [], + list2: [], + year: [], + columns: [ + { + label: "班次", + property: "cc", + }, + { + label: "始发站-终点站", + property: "qqz", + }, + { + label: "到达龙游站时间", + type: "slot", + property: "dd", + }, + ], + data: [], +}); +const dataEnrol = reactive({ + title: "入学分析", + // 幼儿园名称 + kidName: ['第一幼儿园','第二幼儿园','第三幼儿园','第四幼儿园','第五幼儿园','第六幼儿园','第七幼儿园','第八幼儿园'], + // 托班 + kidZs1: [100,105,369,523,651,225,664,245], + kidBm1: [100,105,369,523,651,225,664,245], + // 小班 + kidZs2: [100,105,369,523,651,225,664,245], + kidBm2: [100,105,369,523,651,225,664,245], + // 中班 + kidZs3: [100,105,369,523,651,225,664,245], + kidBm3: [100,105,369,523,651,225,664,245], + // 大班 + kidZs4: [100,105,369,523,651,225,664,245], + kidBm4: [100,105,369,523,651,225,664,245], + // 小学 + primaryName: ['第一小学','第二小学','第三小学','第四小学','第五小学','第六小学'], + primaryZs: [231,544,343,444,335,632], + primaryBm: [231,544,343,444,335,632], + // 初中 + middleName: ['第一初中','第二初中','第三初中','第四初中'], + middleZs: [231,544,343,444], + // 高中 + highName: ['第一高中','第二高中','第三高中'], + highZs: [231,335,632], + // 学校历年匹配 + schoolNmae: [ + { + name: '第一小学', + id: 0, + }, + { + name: '第一初中', + id: 1, + }, + { + name: '第一高中', + id: 2, + }, + ], + schoolYear: [2022,2023,2024], + schoolData: [ + { + id: 0, + bm: [335,654,365], + zs: [335,654,521], + }, + { + id: 1, + zs: [335,654,521], + }, + { + id: 2, + zs: [355,652,721], + }, + ] +}) + +const showEnrol = () => { + dialogShowEnrol.value = true +} +const close = () => { + dialogShowEnrol.value +}; + + + //就业培训 const jypxList = reactive([ { diff --git a/src/view/dialog/dialogEnrol.vue b/src/view/dialog/dialogEnrol.vue new file mode 100644 index 0000000..7097fac --- /dev/null +++ b/src/view/dialog/dialogEnrol.vue @@ -0,0 +1,458 @@ + + + diff --git a/src/view/dialog/echarts/echartPick1.vue b/src/view/dialog/echarts/echartPick1.vue new file mode 100644 index 0000000..baac318 --- /dev/null +++ b/src/view/dialog/echarts/echartPick1.vue @@ -0,0 +1,306 @@ + + + + + \ No newline at end of file diff --git a/src/view/dialog/echarts/echartPick2.vue b/src/view/dialog/echarts/echartPick2.vue new file mode 100644 index 0000000..8d8eae3 --- /dev/null +++ b/src/view/dialog/echarts/echartPick2.vue @@ -0,0 +1,232 @@ + + + + + \ No newline at end of file diff --git a/src/view/dialog/echarts/echartZsbm.vue b/src/view/dialog/echarts/echartZsbm.vue new file mode 100644 index 0000000..c205161 --- /dev/null +++ b/src/view/dialog/echarts/echartZsbm.vue @@ -0,0 +1,308 @@ + + + + + \ No newline at end of file diff --git a/src/view/dialog/echarts/echartsZs.vue b/src/view/dialog/echarts/echartsZs.vue new file mode 100644 index 0000000..af8ee8f --- /dev/null +++ b/src/view/dialog/echarts/echartsZs.vue @@ -0,0 +1,232 @@ + + + + + \ No newline at end of file