瀏覽代碼

bugfix:修复添加订单报错问题

Shu 3 周之前
父節點
當前提交
9330dc9861
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      subpkg_checkin/confirmOrder/confirmOrder.vue

+ 7 - 0
subpkg_checkin/confirmOrder/confirmOrder.vue

@@ -179,6 +179,13 @@
 			async confirmOrder() {
 				//小程序创建的订单,先在后台创建订单,创建成功后跳转至支付页面
 				if (this.order.orderSource === 'MINI_APP') {
+					// #ifdef MP-WEIXIN
+					this.order["platform"] = "WECHAT"
+					// #endif
+
+					// #ifdef MP-ALIPAY
+					this.order["platform"] = "ALIPAY"
+					// #endif
 					if (!this.order.orderId) {
 						let createOrderRes = await uni.$http.post('/order', this.order)
 						if (createOrderRes.data.code !== 200) {