|
@@ -16,7 +16,18 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="u-number-box">
|
|
|
- <u-number-box :name="item.id" :min="0" :max="10" v-model="grouponOrderData.goodsInfos[index].num" @change="calGoodsPrice"></u-number-box>
|
|
|
+<!-- <u-number-box :name="item.id" :min="0" :max="10" v-model="grouponOrderData.goodsInfos[index].num" @change="calGoodsPrice"></u-number-box>-->
|
|
|
+
|
|
|
+ <view class="symbol" @click="numberBox(-1,index)">
|
|
|
+ <text>-</text>
|
|
|
+ </view>
|
|
|
+ <view class="number-box">
|
|
|
+ <text>{{grouponOrderData.goodsInfos[index].num}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="symbol" @click="numberBox(1,index)">
|
|
|
+ <text>+</text>
|
|
|
+ </view>
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -456,6 +467,21 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
methods: {
|
|
|
+
|
|
|
+ numberBox(number,index){
|
|
|
+ console.log('+++++++++++++++++')
|
|
|
+ if (number<0 && this.grouponOrderData.goodsInfos[index].num ===0){
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (number>0 && this.grouponOrderData.goodsInfos[index].num ===10){
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.grouponOrderData.goodsInfos[index].num = this.grouponOrderData.goodsInfos[index].num + number
|
|
|
+ console.log(this.grouponOrderData.goodsInfos[index].num)
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
openmap(selfTake) {
|
|
|
uni.openLocation({
|
|
|
latitude: selfTake.latitude,
|
|
@@ -2223,9 +2249,44 @@ export default {
|
|
|
white-space: nowrap;
|
|
|
line-height: 28rpx;
|
|
|
}
|
|
|
-.u-number-box{
|
|
|
- margin-right: 20rpx;
|
|
|
-}
|
|
|
+
|
|
|
+
|
|
|
+ .u-number-box{
|
|
|
+ margin-right: 20rpx;
|
|
|
+ width: 200rpx;
|
|
|
+ height: 56rpx;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-between;
|
|
|
+ border-radius: 8rpx;
|
|
|
+ border: 2rpx solid rgba(180,42,62,0.3);
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+
|
|
|
+ .number-box{
|
|
|
+ width: 64rpx;
|
|
|
+ height: 52rpx;
|
|
|
+ border-right: 2rpx solid rgba(180,42,62,0.3);
|
|
|
+ border-left: 2rpx solid rgba(180,42,62,0.3);
|
|
|
+ text-align: center;
|
|
|
+ font-size: 24rpx;
|
|
|
+ line-height: 52rpx;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+
|
|
|
+ .symbol{
|
|
|
+ width: 64rpx;
|
|
|
+ height: 52rpx;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ text-align: center;
|
|
|
+ background: #fff7f8;
|
|
|
+ color: #b42a3e;
|
|
|
+ font-size: 35rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
.font-color {
|
|
|
margin-left: 10rpx;
|