wxPay.js 323 Bytes
Newer Older
程默 committed
1
import {requestPOST,requestPOST1} from "@/utils/request.js";
程默 committed
2

程默 committed
3
export default {
chenhui committed
4 5 6 7 8 9 10 11 12
  to_wx_pay(options) {
    return requestPOST1(`${process.env.OLSHOP_URL}/pay/to_wx_pay`, options);
  },
  cancelPayment(options) {
    return requestPOST1(
      `${process.env.OLSHOP_URL}/pay/payment_cancel?orderSn=${options}`
    );
  }
};