You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
421 B
17 lines
421 B
/*
|
|
* @Author: ch
|
|
* @Date: 2022-05-08 00:44:22
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-05-08 00:47:55
|
|
* @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}/pay/wxPay/nativeImage`, data)); |