Explorar el Código

feat:订单详情选择优惠券或权益卡

zhanghui hace 5 meses
padre
commit
54d2c19378
Se han modificado 1 ficheros con 21 adiciones y 0 borrados
  1. 21 0
      common/js/api.js

+ 21 - 0
common/js/api.js

@@ -1004,4 +1004,25 @@ export default {
         })
     },
 
+
+    // 订单支付页面选择优惠券或者权益卡列表
+    availableEquityCards(data) {
+        return request({
+            url: '/business/wechat/order/availableEquityCards',
+            method: 'get',
+            data: data
+        })
+    },
+
+
+    // 订单支付页面选择优惠券或者权益卡列表
+    availableCoupons(data) {
+        return request({
+            url: '/business/wechat/order/availableCoupons',
+            method: 'get',
+            data: data
+        })
+    },
+
+
 }