修改配色,修改功能

This commit is contained in:
2026-02-08 15:43:32 +08:00
parent 17e32d7cc1
commit fa1a8e083e
14 changed files with 441 additions and 119 deletions

View File

@@ -34,7 +34,27 @@ Page({
todayLunar: '',
todayGanZhi: '',
todayAnimal: '',
todayTerm: ''
todayTerm: '',
showHelp: false
},
onShareAppMessage() {
return {
title: '实用的日期推算与农历转换工具',
path: '/pages/date-calc/date-calc'
}
},
onShareTimeline() {
return {
title: '实用的日期推算与农历转换工具'
}
},
toggleHelp() {
this.setData({
showHelp: !this.data.showHelp
});
},
onLoad() {