Commit ae34b9ef by 肖康

detail

parent 418d49cc
...@@ -189,6 +189,8 @@ ...@@ -189,6 +189,8 @@
position: relative; position: relative;
margin-left: 10rpx; margin-left: 10rpx;
top:10rpx; top:10rpx;
font-size: 22rpx;
font-weight: normal;
} }
} }
......
...@@ -63,6 +63,8 @@ ...@@ -63,6 +63,8 @@
position: relative; position: relative;
margin-left: 10rpx; margin-left: 10rpx;
top:10rpx; top:10rpx;
font-size: 22rpx;
font-weight: normal;
} }
} }
......
...@@ -32,6 +32,8 @@ ...@@ -32,6 +32,8 @@
position: relative; position: relative;
margin-left: 10rpx; margin-left: 10rpx;
top:10rpx; top:10rpx;
font-size: 22rpx;
font-weight: normal;
} }
} }
.iconfont{ .iconfont{
......
...@@ -46,6 +46,8 @@ ...@@ -46,6 +46,8 @@
color:#fff; color:#fff;
font-size: 20rpx; font-size: 20rpx;
margin-left: 16rpx; margin-left: 16rpx;
font-size: 22rpx;
font-weight: normal;
} }
.tdbox{ .tdbox{
width: 120rpx; width: 120rpx;
...@@ -175,7 +177,6 @@ ...@@ -175,7 +177,6 @@
} }
.cons{ .cons{
border: 1rpx solid #C6C7CC; border: 1rpx solid #C6C7CC;
.groups{ .groups{
font-size: 24rpx; font-size: 24rpx;
color: $uni-color999; color: $uni-color999;
...@@ -318,6 +319,26 @@ ...@@ -318,6 +319,26 @@
} }
} }
&.act{
.headprice{
background: #FFF8F2!important;
}
.detailfoot .foo1 .checkbox .icon,.detailfoot .foo2 .pr uni-text{
color:#F98119;
}
.detailfoot .foo2 .pr input{
border-left: 1rpx solid #F98119;
border-right: 1rpx solid #F98119;
}
.detailfoot .foo2 .pr{
border: 1px solid #F98119;
}
.detailfoot .btnbox .totalpricebox .addcarbtn{
background: #F98119;
}
}
} }
......
...@@ -159,6 +159,7 @@ ...@@ -159,6 +159,7 @@
position: relative; position: relative;
margin-left: 10rpx; margin-left: 10rpx;
top:10rpx; top:10rpx;
font-size: 22rpx;
} }
} }
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<text class="icon iconfont icon-xxx" @click="close()"></text> <text class="icon iconfont icon-xxx" @click="close()"></text>
</view> </view>
<view class="popcons"> <view class="popcons">
<view class="infobox"> <view class="infobox" @click.stop="clickbug">
<view class="itemone row bothSide"> <view class="itemone row bothSide">
<view class="il elep"> <view class="il elep">
<text class="label">品牌:</text> <text class="label">品牌:</text>
...@@ -77,9 +77,9 @@ ...@@ -77,9 +77,9 @@
</view> </view>
</view> </view>
<view class="pr row " > <view class="pr row " >
<text @click="stepgo('small')">-</text> <text @click.stop="stepgo('small')">-</text>
<input type="number" v-model="num" @input="onInput"/> <input type="number" v-model="num" @input="onInput"/>
<text @click="stepgo('big')">+</text> <text @click.stop="stepgo('big')">+</text>
</view> </view>
</view> </view>
<view class="priceb"> <view class="priceb">
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
<view class="btnbox"> <view class="btnbox">
<view class="totalpricebox row bothSide" v-if="obj.is_buy==1"> <view class="totalpricebox row bothSide" v-if="obj.is_buy==1">
<view class="hej">合计:<text class="tje">{{isdl==1?'¥':'$'}}{{totalmoney}}</text></view> <view class="hej">合计:<text class="tje">{{isdl==1?'¥':'$'}}{{totalmoney}}</text></view>
<view class="addcarbtn" @click="addCar">加入购物车</view> <view class="addcarbtn" @click.stop="addCar">加入购物车</view>
</view> </view>
<a class="kfbtn row verCenter rowCenter" v-else :href="kfqqurl" target="_blank" > <a class="kfbtn row verCenter rowCenter" v-else :href="kfqqurl" target="_blank" >
<text class="icon iconfont icon-qq"></text> <text class="icon iconfont icon-qq"></text>
...@@ -152,6 +152,9 @@ ...@@ -152,6 +152,9 @@
}, 500); }, 500);
}, },
methods: { methods: {
clickbug(){
return false;
},
onInput(e){ onInput(e){
clearTimeout(this.timeout); clearTimeout(this.timeout);
this.timeout = setTimeout(() => { this.timeout = setTimeout(() => {
...@@ -308,7 +311,7 @@ ...@@ -308,7 +311,7 @@
this.obj=res.data; this.obj=res.data;
this.num=this.obj.min_buy this.num=this.obj.min_buy
this.pticearr=res.data.tiered||[] this.pticearr=res.data.tiered||[]
if((!this.obj.delivery_cn)&&this.delivery_hk){ if((!this.obj.delivery_cn)&&this.obj.delivery_hk){
this.isdl=2 this.isdl=2
} }
this.open() this.open()
......
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 sign in to comment