index.js 464 B

123456789101112131415161718
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. /** *
  3. * 扫码输入金额创建订单
  4. * @parmas prePrice 付款金额
  5. * @parmas sourceType 来源,0商城 1门店 2微信朋友圈 3淘宝
  6. * @parmas shopId 门店id
  7. */
  8. export const pay = data => {
  9. return https.post('/pay/get-params', data)
  10. }
  11. /** *
  12. * 快捷下单-微信余额支付宝 m
  13. */
  14. export const fastPay = data => {
  15. return https.post('/order/fast-pay', data, {}, { hideError: true })
  16. }