skinPlan.wxml 1.1 KB

1234567891011121314151617181920212223
  1. <view class="plan-box">
  2. <view class="plan-top">
  3. <view class="plan-top-title">量肤推荐方案</view>
  4. <view class="plan-top-content">根据您肌肤情况,通过大数据比对,智能算法得出您最适合的护肤方案,遵循28天肌肤代谢周期,坚持科学有效护肤,还原肌肤健康美!</view>
  5. </view>
  6. <view class="plan-item" wx:key="index" wx:for="{{skinPlanList}}">
  7. <view class="plan-item-step"><text wx:if="{{index<2}}">第{{index+1}}步:</text>{{item.step_name}}</view>
  8. <view bindtap="goProjectDetail" data-id="{{proItem.id}}" class="plan-item-box" wx:key="index" wx:for="{{item.project_list}}" wx:for-item='proItem'>
  9. <view class="item-box-image">
  10. <image src="{{icon[proItem.category_id]}}"></image>
  11. </view>
  12. <view class="item-box-title">
  13. <view class="title-one">{{proItem.project_name}}</view>
  14. <view class="title-two">
  15. <view class="one">建议频次: {{proItem.rate_text}}</view>
  16. <view class="two">当前进度: <text>{{proItem.done_times}}</text>/<text>{{proItem.total_times}}</text></view>
  17. <view class="radio">预约</view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>