Compare commits
No commits in common. 'main' and 'feature/comment-0624-ch' have entirely different histories.
main
...
feature/co
Before Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 9.4 KiB |
File diff suppressed because it is too large
Load Diff
@ -1,26 +0,0 @@
|
|||||||
/*
|
|
||||||
* @Author: ch
|
|
||||||
* @Date: 2022-05-08 00:44:22
|
|
||||||
* @LastEditors: ch
|
|
||||||
* @LastEditTime: 2022-06-29 14:51:00
|
|
||||||
* @Description: file content
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
import {axiosTk} from "../axiosTk";
|
|
||||||
import {ToAsyncAwait} from "@/plugins/utils";
|
|
||||||
import ENV from '../config/env';
|
|
||||||
|
|
||||||
const BASE_URL = `${ENV.base_url}/mall/trade`;
|
|
||||||
/**
|
|
||||||
* 获取微信支付二维码
|
|
||||||
* @param {*} data
|
|
||||||
*/
|
|
||||||
export const ApiPostWxPayCdoeImg = (data) =>
|
|
||||||
ToAsyncAwait(axiosTk.post(`${BASE_URL}/payCenter/wxPay/nativeData`, data));
|
|
||||||
/**
|
|
||||||
* 获取支付宝支付二维码
|
|
||||||
* @param {*} data
|
|
||||||
*/
|
|
||||||
export const ApiPostAliPayCdoeImg = (data) =>
|
|
||||||
ToAsyncAwait(axiosTk.post(`${BASE_URL}/payCenter/aliPay/qr`, data));
|
|
@ -0,0 +1,17 @@
|
|||||||
|
/*
|
||||||
|
* @Author: ch
|
||||||
|
* @Date: 2022-05-08 00:44:22
|
||||||
|
* @LastEditors: ch
|
||||||
|
* @LastEditTime: 2022-06-15 15:07:13
|
||||||
|
* @Description: file content
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
import {axiosTk} from "../axiosTk";
|
||||||
|
import {ToAsyncAwait} from "@/plugins/utils";
|
||||||
|
import ENV from '../config/env';
|
||||||
|
|
||||||
|
const BASE_URL = `${ENV.base_url}/mall/trade`;
|
||||||
|
|
||||||
|
export const ApiPostPayCdoeImg = (data) =>
|
||||||
|
ToAsyncAwait(axiosTk.post(`${BASE_URL}/payCenter/wxPay/nativeData`, data));
|
Loading…
Reference in new issue