zhongshujie
昨天 d11b7bf0ecbf1662ca96c127beda0581ecfd6853
src/books/toddlerGameImplementation/view/components/chapter003.vue
@@ -1378,7 +1378,7 @@
                        <p>4.有机增减或组合材料生成游戏</p>
                        <p>托班的环境应该根据幼儿的发展需要进行适时适当的变换,如增减材料、组合材料等,以满足不同发展速度幼儿的需要,诱发其不同行为,以支持或推动幼儿发展。比如,在“玩豆”游戏中,常遇到这样的情况:瓶口小、勺子大,豆豆装不进瓶中,游戏初始阶段或能力弱的幼儿就会选择放弃。如果教师适时为幼儿提供漏斗之类的工具,让幼儿借助漏斗继续操作摆弄,游戏就能继续下去。将同种材料进行组合,也是很好的一种方法,如轮胎组合游戏、绳索组合、梯子组合等。材料的组合能使活动的可玩性增强,更需要幼儿协调多种运动技能,并通过不断探索、尝试,寻找使自己顺利解决问题的方法。因此,这对幼儿的能力具有一定的挑战性。但也正因为有了挑战性,幼儿更喜欢这样的活动了。但组合过程中,要根据幼儿的实际水平,确定适宜的难度。
                        </p>
                        <p>资料来源:汤肖丽,杭州市濮家幼儿园教育集团。有改动。</p>
                        <p class="fm-fzxbs">资料来源:汤肖丽,杭州市濮家幼儿园教育集团。有改动。</p>
                    </div>
                </div>
            </div>
@@ -1575,9 +1575,9 @@
            </div>
        </div>
        <preView :isClear="dialogVisible" :md5="p_md5" :pdfTitle="somePdfTitleValue" ref="pdfDialogRef"></preView>
        <dialogExaminations :isClear="dialogVisibleOne" :primaryColor="themeColor"
            :cardList="interfaceQuestion[questionNum]" v-if="interfaceQuestion" :chapter="3" :page="questionNum"
            :questionTitle="questionTitleMain" ref="dialogRef">
        <dialogExaminations :isClear="dialogVisibleOne" :primaryColor="themeColor" :cardList="cardArrayList"
            v-if="interfaceQuestion" :chapter="4" :page="questionNum" :questionTitle="questionTitleMain"
            ref="dialogRef">
        </dialogExaminations>
    </div>
</template>
@@ -1610,15 +1610,15 @@
            chapter001: {
                pdfMd5: {
                    1: {
                        md5: "d5db7d4d8d605f7339473cfd56817ef4",
                        md5: "e62219f5283bb7f304856f2037b1aab3",
                        name: "走近香山慈幼院",
                    },
                    2: {
                        md5: "878b95e1430df73cec22bf947e3cbbc7",
                        md5: "09600dcdfb3c4a1d2a6f873aed587930",
                        name: "马背摇篮——延安保育院",
                    },
                    3: {
                        md5: "f2d1d4f55d7b41c7a516bf1b54ae74ae",
                        md5: "39c965f960dbf4e80eebabe15f858f8c",
                        name: "模块三 岗位进阶训练",
                    },
                    4: {
@@ -1638,6 +1638,7 @@
            themeColor: "#6dcff6",
            questionNum: 0,
            questionTitleMain: "",
            cardArrayList: [],
            // 题目
            collectImg: require("../../assets/images/icon/heart.png"),
            collectCheck: require("../../assets/images/icon/heart-check.png"),
@@ -2089,6 +2090,17 @@
            },
        }
    },
    watch: {
        interfaceQuestion: {
            handler(newValue) {
                if (newValue && newValue[this.questionNum] != undefined) {
                    this.cardArrayList = newValue[this.questionNum];
                }
            },
            deep: true,
            immediate: true
        },
    },
    async mounted() {
        const bookQuestion = localStorage.getItem("toddleGame-book-chapter03-tableData");
        if (bookQuestion) {
@@ -2166,7 +2178,7 @@
            } else if (e == 'video-03') {
                this.handleCollectResource("bc39e1bc833fef30f8c0d2f2692f7794", "bc39e1bc833fef30f8c0d2f2692f7794", '', "视频", "bits", '视频:婴幼儿游戏的评价')
                this.chapterData.isCollectVideo02 = !this.chapterData.isCollectVideo02
            }
            }
        },
        //资源收藏事件
        // resourcePath  文件路径,
@@ -2343,6 +2355,9 @@
            if (num) {
                this.questionNum = this.chapter001.question[num].questionNum;
                this.questionTitleMain = this.chapter001.question[num].questionTitleMain;
                if (this.interfaceQuestion && this.interfaceQuestion[this.questionNum] != undefined) {
                    this.cardArrayList = this.interfaceQuestion[this.questionNum];
                }
                this.$refs.dialogRef.openDialogQuestion();
            }
        },