<template>
|
<div class="page-header-box">
|
<span class="page-header-text" v-if="special == 1"
|
>专题一 学前儿童生理发展特点与保健</span
|
>
|
<span class="page-header-text" v-if="special == 2"
|
>专题二 学前儿童的生长发育</span
|
>
|
<span class="page-header-text" v-if="special == 3"
|
>专题三 学前儿童心里发展特点与保健</span
|
>
|
<span class="page-header-text" v-if="special == 4"
|
>专题四 学前儿童健康评价</span
|
>
|
<span class="page-header-text" v-if="special == 5"
|
>专题五 学前儿童营养卫生与保健</span
|
>
|
<span class="page-header-text" v-if="special == 6"
|
>专题六 学前儿童各年龄期的特点与保健</span
|
>
|
<span class="page-header-text" v-if="special == 7"
|
>专题七 学前儿童疾病及其预防</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>
|