Files
2025-10-22 07:50:31 +08:00

11 lines
380 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict';
/**
* 此为支付异步回调专用云函数你的业务逻辑写在service目录下
* 如service/goods.js 写商品订单付款成功后的逻辑
*/
const vkPay = require('vk-uni-pay');
const orderPaySuccess = require('./orderPaySuccess');
exports.main = async (event, context) => {
return await vkPay.paymentNotify({ event, context, orderPaySuccess });
};