Sanakey
2021-06-04 355a84d740a2a9dfa1d67cb2d2e11843d42809ac
提交 | 用户 | age
27d5ae 1 <van-cell-group class="my-cell-group">
d38be7 2   <view class="padding-tb-5">
355a84 3     <van-cell class="my-cell cell-padding detail-title" border="{{false}}" title-width="500rpx" title="{{detail.title}}" use-label-slot>
d38be7 4       <view>
S 5         <icon class="iconfont icon-xianshikejian"></icon> {{detail.visiteTimes}}
6       </view>
7     </van-cell>
8     <van-cell class="my-cell cell-padding" border="{{false}}" title-width="450rpx" use-label-slot>
9       <view slot="title" class="price-text">
10         秒杀价 <text class="price">¥{{detail.salesPrice}} </text>
11         <text class="original-price"> ¥{{detail.originalPrice}}</text>
12       </view>
13       <view>
f46177 14         剩余数量:{{detail.quantity}}
d38be7 15       </view>
S 16     </van-cell>
f46177 17     <view class="padding-lr desc font-size-12 text-right">
S 18       限购数量:{{detail.restrictBuyingQuantity||'不限'}}
19     </view>
d38be7 20   </view>
27d5ae 21 </van-cell-group>
S 22
23 <van-cell-group class="my-cell-group">
24   <van-cell class="my-cell" border="{{false}}" title="配送方式" value="{{detail.freeName}}">
25   </van-cell>
26   <van-cell wx:if="{{detail.isRequiredAddress}}" title-width="220rpx" class="my-cell seller" border="{{false}}" title="配送费">
27     <view class="price text-right">
28       ¥{{detail.transCosts}}
29     </view>
30   </van-cell>
31 </van-cell-group>
32 <!--<van-cell title-width="220rpx" class="my-cell seller" border="{{false}}" title="配送方式">-->
33 <!--  <view class="">-->
34 <!--    {{order.freeName}}-->
35 <!--  </view>-->
36 <!--</van-cell>-->
37