20200623-zlp-1

一日流程学习
This commit is contained in:
paidaxing444
2020-06-23 10:44:36 +08:00
parent 0ea24045a1
commit f2d68a6674
2 changed files with 67 additions and 462 deletions

View File

@ -27,34 +27,33 @@
<el-col :span="20" :xs="24">
<el-card class="box-card">
<div slot="header" class="clearfix">
<span>{{title}}</span>
<span class="box-card-title">{{title}}</span>
</div>
<div class="text item">
导言
<br />
<label v-html="content"></label>
<h3 class="box-card-title">导言</h3>
<div class="pad-left" v-html="content"></div>
</div>
<div class="text item">
目的
<br />
<label v-html="note"></label>
<h3 class="box-card-title">目的</h3>
<div class="pad-left" v-html="note"></div>
</div>
<div v-for="(item, index) in dayflowtaskList" :key="index" class="text item">
{{item.taskLable}}
<br />
{{item.taskContent}}
<div
v-for="(item_standard, index_standard) in (dayflowstandardList.filter(p=>p.taskCode==item.code))"
:key="index_standard"
class="text item"
>
{{item_standard.standardTitle}}
<br />解读
<h3 class="box-card-title mr">{{item.taskLable}}</h3>
<p class="pad-left">{{item.taskContent}}</p>
<div class="pad-left">
<div
v-for="(item_unscramble, index_unscramble) in (dayflowunscrambleList.filter(p=>p.standardId==item_standard.id))"
:key="index_unscramble"
v-for="(item_standard, index_standard) in (dayflowstandardList.filter(p=>p.taskCode==item.code))"
:key="index_standard"
class="text item"
>{{item_unscramble.sort}}){{item_unscramble.content}}</div>
>
<h3 class="box-card-case mr">{{item_standard.standardTitle}}</h3>
<h3 class="box-card-info">解读</h3>
<div
v-for="(item_unscramble, index_unscramble) in (dayflowunscrambleList.filter(p=>p.standardId==item_standard.id))"
:key="index_unscramble"
class="text item pad-left"
>{{item_unscramble.sort}}){{item_unscramble.content}}</div>
</div>
</div>
</div>
</el-card>
@ -80,9 +79,9 @@ export default {
//标题
title: "一日流程",
//导言
content: undefined,
content: "寓教育于生活。以游戏为基本活动。没有爱就没有教育。教师素质决定教育品质。一童一世界,尊重差异,关注个性化发展。孩子喜欢的老师就是好老师,孩子喜欢的幼儿园就是好幼儿园。",
//目的
note: undefined,
note: "《幼儿园3-6标准化一日流程》下称《一日流程》的基本目的就是要将国家教育纲领性文件中所主张的幼儿园教育理念完全落地。也就是能够让这些理念在幼儿园保教人员指尖上操作和实现。其纲领性文件包括《幼儿园工作规程》简称《规程》《幼儿园教育指导纲要》简称《纲要》《3-6岁儿童学习与发展指南》简称《指南》。这三部纲领中的教育理念不仅仅是确定《一日流程》全部内容的基本依据而且也自始至终地指导了《一日流程》内容在一线进行实验的整个过程。因此在其实质上《一日流程》本身就是将国家三大教育理念——“寓教于生活”、“以游戏为基本活动”以及“以儿童为本”所支撑的教育过程进行分解和物化。",
// 根据一日流程id查到的名下任务列表
dayflowtaskList: [],
// 根据任务查询到名下标准
@ -135,8 +134,11 @@ export default {
// 节点单击事件
handleNodeClick(data) {
this.queryParams.detailId = data.id;
this.title = data.label;
this.getTaskList();
if (data.id >= 9999) {
} else {
this.title = data.label;
this.getTaskList();
}
// console.log(this.dayflowtaskList[date.id])
// this.getStandardList();
},
@ -153,13 +155,14 @@ export default {
}
};
</script>
<style>
<style lang="scss" scoped>
.text {
font-size: 14px;
}
.item {
margin-bottom: 18px;
line-height: 22px;
}
.clearfix:before,
@ -170,4 +173,43 @@ export default {
.clearfix:after {
clear: both;
}
.box-card-title {
display: flex;
align-items: center;
font-size: 16px;
&::before {
content: "";
margin-right: 8px;
width: 4px;
height: 16px;
background: #1890ff;
}
&.mr {
margin: 10px 0;
}
}
.box-card-case {
margin: 0;
font-size: 14px;
font-weight: 700;
display: flex;
align-items: center;
&::before {
content: "";
margin-right: 8px;
width: 4px;
height: 14px;
background: #2c3e50;
}
&.mr {
margin: 10px 0;
}
}
.box-card-info {
font-size: 14px;
font-weight: 700;
}
.pad-left {
padding-left: 15px;
}
</style>