electron-ban-pai/src/components/teacherStyleDetail.vue

45 lines
1.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div>
<div class="yiqing-title clips1 teacher-title">{{teacherInfo.teatherName}}</div>
<img src="/static/kindergartenIntroduce/icon-back.png" class="back-img" @click="backstyle">
<div class="teacher-content-box">
<img src="/static/seconds/tu-01.png" class="teacher-img" >
<div class="teacher-right-box">
<div>优秀教师方慧慧初级教师</div>
<div style="margin-top: 10px;"><span style="letter-spacing: 32px;"></span>10</div>
<div>教学业绩2011年学前教育专业毕业后考入攀枝花市实验幼儿园从事幼教事业已有整整10个年头在工作中始终保持着积极热情谦虚踏实的学习状态热心对待工作真心呵护幼儿诚心服务家长多次参加园级市级各类比赛均获得优异的成绩制作的教玩具插插乐获攀枝花市优秀玩教具比赛一等奖好玩的小动物获得四川省优秀玩教具比赛荣获二等奖论文如何提高小班幼儿参加体育活动的兴趣在中国幼儿教育学会主办的中国幼儿教育系统年度论文评选活动中荣获一等奖论文浅谈在建构游戏中构建有效的师幼互动参与了中国人生科学学会美育研究会十三五科研规划重点课题获得课题科研成果一等奖每一个孩子都是一颗会发光的星星找寻不同的角度发现不同的时间里孩子们发光发亮的美丽 我愿将自己全部的爱献给孩子们让他们在人生起跑线上跑好第一步</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'newsInformation',
props:{
teacherInfo:{
type:Object,
default:()=>{
return ''
}
}
},
data() {
return {
}
},
methods: {
backstyle(){
this.$emit('backstyle',false);
}
},
mounted() {
}
}
</script>
<style>
</style>