parent
e957575ae2
commit
d2a97c734b
@ -0,0 +1,10 @@
|
||||
<!--
|
||||
* @Author: ch
|
||||
* @Date: 2022-05-07 22:57:24
|
||||
* @LastEditors: ch
|
||||
* @LastEditTime: 2022-05-07 22:57:39
|
||||
* @Description: file content
|
||||
-->
|
||||
<template>
|
||||
<el-radio/>
|
||||
</template>
|
@ -0,0 +1,10 @@
|
||||
<!--
|
||||
* @Author: ch
|
||||
* @Date: 2022-05-08 01:14:03
|
||||
* @LastEditors: ch
|
||||
* @LastEditTime: 2022-05-08 01:14:31
|
||||
* @Description: file content
|
||||
-->
|
||||
<template>
|
||||
<div>订单详情页</div>
|
||||
</template>
|
@ -0,0 +1,14 @@
|
||||
<!--
|
||||
* @Author: ch
|
||||
* @Date: 2022-05-08 01:11:33
|
||||
* @LastEditors: ch
|
||||
* @LastEditTime: 2022-05-08 01:11:40
|
||||
* @Description: file content
|
||||
-->
|
||||
<template>
|
||||
<div>
|
||||
<p>支付成功</p>
|
||||
<button>返回首页</button>
|
||||
<button>查看订单</button>
|
||||
</div>
|
||||
</template>
|
@ -0,0 +1,17 @@
|
||||
/*
|
||||
* @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));
|
Loading…
Reference in new issue