channel.js 1.22 KB
Newer Older
sunhongwei's avatar
sunhongwei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
import request from '@/utils/request'

// 创建支付渠道
export function createChannel(data) {
  return request({
    url: '/pay/channel/create',
    method: 'post',
    data: data
  })
}


// 更新支付渠道
export function updateChannel(data) {
  return request({
    url: '/pay/channel/update',
    method: 'put',
    data: data
  })
}

// 删除支付渠道
export function deleteChannel(id) {
  return request({
    url: '/pay/channel/delete?id=' + id,
    method: 'delete'
  })
}

// 获得支付渠道
// export function getChannel(id) {
//   return request({
//     url: '/pay/channel/get?id=' + id,
//     method: 'get'
//   })
// }



// 获得支付渠道分页
export function getChannelPage(query) {
  return request({
    url: '/pay/channel/page',
    method: 'get',
    params: query
  })
}

// 导出支付渠道Excel
export function exportChannelExcel(query) {
  return request({
    url: '/pay/channel/export-excel',
    method: 'get',
    params: query,
    responseType: 'blob'
  })
}

// 获得支付渠道
export function getChannel(merchantId,appId,code) {
  return request({
    url: '/pay/channel/get-channel',
    params:{
      merchantId:merchantId,
      appId:appId,
      code:code
    },
    method: 'get'
  })
}