Commit ecbc760c authored by Mac's avatar Mac

1

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