You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.2 KiB
57 lines
2.2 KiB
<import src="../../wxParse/wxParse.wxml"/>
|
|
|
|
|
|
<view wx:for-item="{{product}}">
|
|
<view class="tuan-detail">
|
|
<view class="line banner">
|
|
<view id="focus" class="focus">
|
|
<view class="hd">
|
|
<view></view>
|
|
</view>
|
|
<view class="bd">
|
|
<view class="bd_banner">
|
|
<view class='bd_banner_img'>
|
|
<image src="{{product.showImg}}" mode="widthFix"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="item-detail">
|
|
<view class="detail-row bb">
|
|
<view class="item-price">
|
|
<view class='pro-title'>{{product.name}}</view>
|
|
<view class="price">¥ {{product.price/100}}/套
|
|
<!-- <del wx:if='{{product.price<product.originalPrice}}' class="txt_center fontcl1" style="color: #FFDED5;font-size: 14px;margin-left: 10px;position:absolute;margin-top: 3px;">¥{{product.originalPrice}}/套</del> -->
|
|
</view>
|
|
<view class="x12 price-tip">
|
|
<text class="text-gray text-small" style="margin-left: 0px;">该套餐内含{{product.serviceCount}}次服务</text>
|
|
<text class="text-gray text-small margin-left">已售:{{product.soldNum}}套</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="blank-10 bg"></view>
|
|
|
|
<view class="item-intro">
|
|
<view class="intro-title">下单须知</view>
|
|
<view class="intro-bd notice-box">
|
|
<template is="wxParse" data="{{wxParseData:notice.nodes}}"/>
|
|
</view>
|
|
</view>
|
|
<view class="blank-10 bg"></view>
|
|
|
|
<view class='box'>
|
|
<view class='lookDetail' bindtap='loading' data-item='{{product.goodsNo}}'>查看详情>></view>
|
|
</view>
|
|
<view class="blank-50"></view>
|
|
<view data-spm="action" class="item-action">
|
|
<view class="buy-now {{nowDate > product.endedAt||product.soldNum >= product.totalNum?'gray':''}}" style="position: relative">
|
|
<view class='create-order' data-item='{{product}}' bindtap="{{nowDate > product.endedAt||product.soldNum >= product.totalNum?'':'createOrder'}}">立即下单</view>
|
|
<view class="buy-bg" style="{{nowDate > product.endedAt||product.soldNum >= product.totalNum?'display: block;':'display: none;'}}">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|