YM
2024-05-14 cf4014b95b5aa3d077cad96f83809366b9879105
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
  <div class="page-header-box">
    <span class="page-header-text" v-if="special == 1"
      >专题一&nbsp;学前儿童生理发展特点与保健</span
    >
    <span class="page-header-text" v-if="special == 2"
      >专题二&nbsp;学前儿童的生长发育</span
    >
    <span class="page-header-text" v-if="special == 3"
      >专题三&nbsp;学前儿童心里发展特点与保健</span
    >
    <span class="page-header-text" v-if="special == 4"
      >专题四&nbsp;学前儿童健康评价</span
    >
    <span class="page-header-text" v-if="special == 5"
      >专题五&nbsp;学前儿童营养卫生与保健</span
    >
    <span class="page-header-text" v-if="special == 6"
      >专题六&nbsp;学前儿童各年龄期的特点与保健</span
    >
    <span class="page-header-text" v-if="special == 7"
      >专题七&nbsp;学前儿童疾病及其预防</span
    >
    <span class="page-header-text" v-if="special == 8"
      >专题八&nbsp;学前儿童常用护理与急救技术</span
    >
    <span class="page-header-text" v-if="special == 9"
      >专题九&nbsp;学前儿童生活保健制度</span
    >
    <span class="page-header-text" v-if="special == 10"
      >专题九&nbsp;托幼机构的环境卫生</span
    >
    <span class="page-header-num">{{ num }}</span>
  </div>
</template>
 
<script>
export default {
  name: "even-header",
  props: ["special", "num"],
  methods: {},
};
</script>
 
<style lang="less" scoped></style>