Commit ecbc760c authored by Mac's avatar Mac

1

parent 9f0b0bf4
This diff is collapsed.
......@@ -338,15 +338,18 @@
<view class="title-c" >
商家套餐卡
</view>
<view class="setmeal-box">
<view v-for="(cl, ci) in allCoupon" :key="ci" @click="gocoupon(cl)">
<view class="setmeal-item u-skeleton-rect" :style="{'margin-left':ci==0?'15px':'0','margin-right': ci+1==list.length?'15px':'5px'}">
<view v-if="allCoupon.length==0" style="width: 100%;height: 50px;line-height: 50px;text-align: center;" >
暂无任何优惠~
</view>
<view v-for="(cl, ci) in allCoupon" :key="ci" @click="gocoupon(cl)" v-if="allCoupon.length>0">
<view class="setmeal-item u-skeleton-rect" :style="{'margin-left':ci==0?'15px':'0','margin-right': ci+1==allCoupon.length?'15px':'5px'}">
<view class="setmeal-item-top">
<view style="font-size: 14px;margin-bottom: 3px;" class="setmeal-name">{{cl.Name}}</view>
<view style="font-size: 11px;color: rgba(239, 220, 203, 0.6);" class="setmeal-name">{{cl.Describe}}</view>
<view class="setmeal-price">
<text style="font-size: 13px;">核销次数:{{cl.TotalNum}}</text>
</view>
<view class="setmeal-pl" style="left: -9px;"></view>
<view class="setmeal-pl" style="right: -9px;"> </view>
......@@ -769,7 +772,7 @@
},
godesigner(item){//设计师详情
uni.navigateTo({
url: "/pages/reserve/designerDetail?ID="+item.ID,
url: "/pages/reserve/designerDetail?ID="+item.ID+'&storeId='+this.id,
})
}
}
......
......@@ -8,7 +8,7 @@
.subscribe .subscribe-box{
width: 100%;
background: #FFF;
padding: 15px 0 80px;
padding-bottom: 80px;
}
.subscribe .title{
width: 100%;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment