1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!--pages/subCardDetails/subCardDetails.wxml-->
- <view>
- <view class="termValidity">
- <view>有效期:</view>
- <text>2022.06.27~2022.08.2</text>
- </view>
- <view class="availableItems">
- <view class="title">可用项目</view>
- <view class="item" wx:for="{{projectList}}" wx:key="index">
- <view class="left">
- <image src="/images/card_img.png"></image>
- </view>
- <view class="right">
- <view class="rightTitle">【战痘克星】西班牙TOSKANI祛痘祛痘印王炸组合(中度,重度)</view>
- <view class="frequencyToUse">
- <text class="frequency">1/2</text>
- <view class="toUse">去使用</view>
- </view>
- </view>
- </view>
- </view>
- <view class="instructionsUse">
- <view>使用须知</view>
- <text>·次卡只可以在使用【解救痘肌】西班牙TOSKANI净肤祛痘(轻度)时使用</text>
- </view>
- <view class="reminder">
- <view>温馨提示</view>
- <text>·请在有效期内使用</text>
- <text>·可用仪器为【水光仪】</text>
- </view>
- <view class="recommendYouTitle">
- <view></view>
- <text>为你推荐</text>
- <view></view>
- </view>
- <view class="recommendYouCon">
- <view class="recommendYouConItem" wx:for="{{recommendList}}" wx:key="index">
- <view class="recommendYouConItemTop">
- <image src="/images/card_img.png"></image>
- </view>
- <view class="recommendYouConItemBottom">
- <view class="title">深层清洁水维养(急…</view>
- <view class="descCon">
- <view class="desc" wx:for="{{descList}}" wx:for-item="itemChildRen" wx:key="index">深层清洁</view>
- </view>
- <view class="priceCart">
- <view class="price">
- <text>¥</text>
- <text>189.00</text>
- </view>
- <view class="cart">
- <image src="/images/card_img.png"></image>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
|