姨妈管家小程序代码

myRecord.wxml 834B

1234567891011121314151617181920212223
  1. <!--index.wxml-->
  2. <view class='wrapper back'>
  3. <view class="wd80 login-all">
  4. <view class='show'>
  5. <text>平均天数:{{avg_day}}</text>
  6. <text>平均周期:{{avg_period}}</text>
  7. </view>
  8. <!-- 列表top -->
  9. <view class='instruction-top'>
  10. <text>月经开始日期</text>
  11. <text>行经天数</text>
  12. <text>周期天数</text>
  13. </view>
  14. <!-- 计算列表 -->
  15. <scroll-view class='list-wrapper' wx:for="{{period_list}}" wx:key="void">
  16. <view class="list-content">
  17. <view class='list-item'>{{item.start_time}}</view>
  18. <view class='list-item'>{{item.menstruate_days}}</view>
  19. <view class='list-item'>{{item.menstruate_period}}</view>
  20. </view>
  21. </scroll-view>
  22. </view>
  23. </view>