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

56 lines
2.4 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" style="text-align: left;">攀枝花市西区第一幼儿园分园招生公告</div>
<img src="../assets/kindergartenIntroduce/icon-back.png" style="width: 48px;height: 48px;position: absolute;top: 20px;right: 20px;" >
<div class="yiqing-content">
尊敬的各位家长<br />
攀枝花市西区第一幼儿园分园系全日制公办幼儿园由攀枝花市西区第一幼儿园统一管理隶属攀枝花市西区教育体育局
攀枝花市西区第一幼儿园分园座落于西区清香坪梨华路紧邻市31中小园舍建筑面积2000平方米户外活动场地1600平方米园内设有标准化活动室寝室开设大小年龄段教学班7个按照总体规划将建成户外活动场地大型玩具区幼儿体能锻炼场地体验园等生活体验区<br />
指导思想<br />
依据西区学前教育招生工作相关规定严格按照相对就近免试入园及便民便利公开透明的招生工作要求强化责任意识和服务意识充分利用现有资源积极落实随迁子女的入园政策尽力满足学区内广大群众的需求努力做好2018年秋季学期西区第一幼儿园分园招生工作<br />
招生原则<br />
()坚持公开公正公平的原则<br />
在西区第一幼儿园分园竣工且相关部门验收合格后按区教育体育局统一规定时间和内容向社会公开招生信息和招生细则<br />
坚持满足36岁接受全日制学前教育为主的原则<br />
保证36岁幼儿接受学前教育满足入园要求
按照相关要求设定班级数<br />
2018年秋季学期将面向西区招生共开设7个班
</div> -->
<div class="yiqing-title clips1" style="text-align: left;padding-right: 50px;">{{dataObj.title}}</div>
<img src="../assets/kindergartenIntroduce/icon-back.png" class="back-img" @click="backNews">
<div class="yiqing-content">
{{dataObj.content}}
</div>
</div>
</template>
<script>
export default {
name: 'newsInformation',
props:{
dataObj:{
type:Object,
default:()=>{
return ''
}
}
},
data() {
return {
}
},
methods: {
backNews(){
this.$emit('backNews',false);
}
},
mounted() {
}
}
</script>
<style>
</style>