my-log.wxml 577 B

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