Rap 原分销系统代码Web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 line
366B

  1. import request from '@/utils/request'
  2. export function get() {
  3. return request({
  4. url: 'api/aliPay',
  5. method: 'get'
  6. })
  7. }
  8. export function update(data) {
  9. return request({
  10. url: 'api/aliPay',
  11. data,
  12. method: 'put'
  13. })
  14. }
  15. // 支付
  16. export function toAliPay(url, data) {
  17. return request({
  18. url: 'api/' + url,
  19. data,
  20. method: 'post'
  21. })
  22. }