|
@@ -17,7 +17,7 @@
|
|
|
</view>
|
|
|
|
|
|
<view>
|
|
|
- <u-number-box :name="item.id" :min="0" 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>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -576,6 +576,13 @@ export default {
|
|
|
that.orderCreate()
|
|
|
},
|
|
|
orderCreate () {
|
|
|
+ console.log("orderCreate .. ", this.grouponOrderData.goodsInfos)
|
|
|
+ let goodsInfos = [];
|
|
|
+ this.grouponOrderData.goodsInfos.forEach(e => {
|
|
|
+ let g = {goodsId: e.id, num: e.num};
|
|
|
+ goodsInfos.push(g);
|
|
|
+ })
|
|
|
+
|
|
|
let that = this
|
|
|
postOrderSubmit({
|
|
|
distributeMode: 1,
|
|
@@ -583,7 +590,7 @@ export default {
|
|
|
orderSource: 1,
|
|
|
grouponId: this.grouponId,
|
|
|
selfTakeId: this.selfTakeId,
|
|
|
- goodsInfos: this.goods
|
|
|
+ goodsInfos: goodsInfos
|
|
|
}).then(res => {
|
|
|
that.orderKey = res.data.orderNo,
|
|
|
uni.showLoading({
|
|
@@ -613,7 +620,7 @@ export default {
|
|
|
uni.navigateBack({
|
|
|
delta: 1
|
|
|
})
|
|
|
- }, 1000)
|
|
|
+ }, 500)
|
|
|
// this.SubOrder();
|
|
|
},
|
|
|
payCheck (type) {
|