|
@@ -85,7 +85,6 @@
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
import PageBanner from '../../components/PageBanner.vue'
|
|
import PageBanner from '../../components/PageBanner.vue'
|
|
|
-import LoginGuideCard from '../../components/LoginGuideCard.vue'
|
|
|
|
|
import FamilyEnergyBar from '../../components/FamilyEnergyBar.vue'
|
|
import FamilyEnergyBar from '../../components/FamilyEnergyBar.vue'
|
|
|
import FamilyRelationGraph from '../../components/FamilyRelationGraph.vue'
|
|
import FamilyRelationGraph from '../../components/FamilyRelationGraph.vue'
|
|
|
import DimensionTasks from '../../components/DimensionTasks.vue'
|
|
import DimensionTasks from '../../components/DimensionTasks.vue'
|
|
@@ -147,6 +146,25 @@ export default {
|
|
|
},
|
|
},
|
|
|
intimacyMapForGraph: function() {
|
|
intimacyMapForGraph: function() {
|
|
|
return {}
|
|
return {}
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 每月引导语 */
|
|
|
|
|
+ monthlyGuidance: function() {
|
|
|
|
|
+ var month = new Date().getMonth()
|
|
|
|
|
+ var messages = [
|
|
|
|
|
+ '一月:新年伊始,增进家庭沟通',
|
|
|
|
|
+ '二月:春节团聚,珍惜亲子时光',
|
|
|
|
|
+ '三月:春暖花开,多陪伴孩子',
|
|
|
|
|
+ '四月:清明踏青,共享家庭活动',
|
|
|
|
|
+ '五月:劳动教育,培养家庭责任感',
|
|
|
|
|
+ '六月:儿童节,倾听孩子心声',
|
|
|
|
|
+ '七月:暑期陪伴,增进亲子关系',
|
|
|
|
|
+ '八月:开学准备,共同规划',
|
|
|
|
|
+ '九月:新学期,建立家庭规则',
|
|
|
|
|
+ '十月:国庆假期,家庭协作时光',
|
|
|
|
|
+ '十一月:感恩季节,表达家庭关爱',
|
|
|
|
|
+ '十二月:年终总结,回顾家庭成长'
|
|
|
|
|
+ ]
|
|
|
|
|
+ return messages[month] || messages[0]
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|