exports.main = async (event, context) => {
let {body,totalFee} = event
const res = await cloud.cloudPay.unifiedOrder({
"body":body, // 课程名称
"outTradeNo" : getorderid(), // 订单号
"spbillCreateIp" : "127.0.0.1", // 固定
"subMchId" : subMchId, // 商户号
"totalFee" : totalFee, // 价格,以分为单位
"envId": "cloud1-3gj5gvel5664e032", // 环境id
"functionName": "order", // 支付成功后的回调
"nonceStr": generateRandomString(), // 32位随机字符串
"tradeType":"JSAPI"
})
return res
}