YM
2024-05-13 a4ccb26ce25a05842d9573149603260b3fbadcbb
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
<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-num">{{ num }}</span>
  </div>
</template>
 
<script>
export default {
  name: "even-header",
  props: ["special", "num"],
  methods: {},
};
</script>
 
<style lang="less" scoped></style>