|
@@ -145,13 +145,13 @@
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="u-number-box" v-if="!storeInfo.isEnd && storeInfo.goodsList[index].isSale === 1 && item.totalStock > 0">
|
|
<view class="u-number-box" v-if="!storeInfo.isEnd && storeInfo.goodsList[index].isSale === 1 && item.totalStock > 0">
|
|
- <view class="symbol">
|
|
|
|
|
|
+ <view class="symbol" @click="numberBox(-1,index)">
|
|
<text>-</text>
|
|
<text>-</text>
|
|
</view>
|
|
</view>
|
|
<view class="number-box">
|
|
<view class="number-box">
|
|
- <text>0</text>
|
|
|
|
|
|
+ <text>{{storeInfo.goodsList[index].num}}</text>
|
|
</view>
|
|
</view>
|
|
- <view class="symbol">
|
|
|
|
|
|
+ <view class="symbol" @click="numberBox(1,index)">
|
|
<text>+</text>
|
|
<text>+</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -660,6 +660,19 @@ export default {
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
|
|
|
|
+
|
|
|
|
+ numberBox(number,index){
|
|
|
|
+ console.log('+++++++++++++++++')
|
|
|
|
+ if (number<0 && this.storeInfo.goodsList[index].num ===0){
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if (number>0 && this.storeInfo.goodsList[index].num ===10){
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ this.storeInfo.goodsList[index].num = this.storeInfo.goodsList[index].num + number
|
|
|
|
+ console.log(this.storeInfo.goodsList[index].num)
|
|
|
|
+ },
|
|
|
|
+
|
|
// goFirendo(){
|
|
// goFirendo(){
|
|
// let groupon = this.storeInfo;
|
|
// let groupon = this.storeInfo;
|
|
// let userInfo = this.$Cache.get("USER_INFO", true)
|
|
// let userInfo = this.$Cache.get("USER_INFO", true)
|
|
@@ -2432,7 +2445,7 @@ action-sheet-item {
|
|
}
|
|
}
|
|
|
|
|
|
.number-box{
|
|
.number-box{
|
|
- width: 128rpx;
|
|
|
|
|
|
+ width: 64rpx;
|
|
height: 52rpx;
|
|
height: 52rpx;
|
|
border-right: 2rpx solid rgba(180,42,62,0.3);
|
|
border-right: 2rpx solid rgba(180,42,62,0.3);
|
|
border-left: 2rpx solid rgba(180,42,62,0.3);
|
|
border-left: 2rpx solid rgba(180,42,62,0.3);
|