my-log.wxml 535 B

12345678910111213141516
  1. <view style="margin-top:20px">
  2. <calendar
  3. bindprevMonth="prevDate"
  4. bindnextMonth="nextDate"
  5. binddateChange="dateChange"
  6. days-color="{{loged}}"
  7. weeks-type="cn"
  8. show-more-days="true"
  9. active-type="rounded"
  10. />
  11. <zan-cell-group>
  12. <zan-cell title="本月积累学习时长" value="{{ thisMonthLearnTime }}"> </zan-cell>
  13. <zan-cell title="总学习时间" value="{{ totalLearnTime }}"> </zan-cell>
  14. <zan-cell title="总打卡天数" value="{{ checkCardDays }}"> </zan-cell>
  15. </zan-cell-group>
  16. </view>