fanfan 6 months ago
parent 01e7b8dd69
commit 69da5aad49
  1. 21
      api/tutorial.js
  2. 3
      pages/gamll/index.vue

@ -7,7 +7,9 @@ const api = {
retailList: 'retail/retailPayList', retailList: 'retail/retailPayList',
describe: 'retail/describe', describe: 'retail/describe',
submit: 'retail/submit', submit: 'retail/submit',
getSoftAgreement: 'retail/getSoftAgreement' getSoftAgreement: 'retail/getSoftAgreement',
tradeQuery: 'cashier/tradeQuery',
unify: 'goods/unify',
} }
// 分类 // 分类
@ -34,3 +36,20 @@ export const submit = (param) => {
export const getSoftAgreement = (param) => { export const getSoftAgreement = (param) => {
return request.get(api.getSoftAgreement, param) return request.get(api.getSoftAgreement, param)
} }
/**
* 交易查询
* 查询第三方支付订单是否付款成功
* @param {Object} param
*/
export function tradeQuery(param) {
return request.get(api.tradeQuery, param)
}
/**
* 查询第三方支付信息
* @param {Object} param
*/
export function unify(param) {
return request.get(api.unify, param)
}

@ -203,7 +203,6 @@
</template> </template>
<script> <script>
import * as api from '@/api/tutorial' import * as api from '@/api/tutorial'
import * as CashierApi from '@/api/cashier';
import { import {
Wechat Wechat
} from '@/core/payment' } from '@/core/payment'
@ -332,7 +331,7 @@
const app = this const app = this
// //
// //
CashierApi.tradeQuery({ api.tradeQuery({
outTradeNo, outTradeNo,
method, method,
client: app.platform client: app.platform

Loading…
Cancel
Save