1234567891011121314151617181920212223 |
- <!--index.wxml-->
- <view class='wrapper back'>
- <view class="wd80 login-all">
- <view class='show'>
- <text>平均天数:{{avg_day}}</text>
- <text>平均周期:{{avg_period}}</text>
- </view>
- <!-- 列表top -->
- <view class='instruction-top'>
- <text>月经开始日期</text>
- <text>行经天数</text>
- <text>周期天数</text>
- </view>
- <!-- 计算列表 -->
- <scroll-view class='list-wrapper' wx:for="{{period_list}}" wx:key="void">
- <view class="list-content">
- <view class='list-item'>{{item.start_time}}</view>
- <view class='list-item'>{{item.menstruate_days}}</view>
- <view class='list-item'>{{item.menstruate_period}}</view>
- </view>
- </scroll-view>
- </view>
- </view>
|