Files
zhongPin/api/pay.js

14 lines
237 B
JavaScript
Raw Normal View History

2023-02-15 09:25:11 +08:00
import request from '@/utils/request'
const service_name = "oil-pay"
export default {
// 微信下单 支付
aggregatePay(data) {
return request({
2023-05-08 10:45:07 +08:00
url: `/xkhl-finance/yiBaoPay/wxPay`,
2023-02-15 09:25:11 +08:00
method: 'post',
data: data
})
},
}