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