| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import request from '@/utils/request'
- // 分页查询
- export const pageList = (query) => {
- return request({
- url: '/order/orderInfo/teamOrderlist',
- method: 'get',
- params: query
- })
- }
- // id获取详情
- export function getSelectById(id) {
- return request({
- url: '/order/orderInfo/teamOrderDetail?id=' + id,
- method: 'get'
- })
- }
- // 对公支付
- export const gotoCorporatePay = (data) => {
- return request({
- url: '/order/orderInfo/gotoCorporatePay',
- method: 'post',
- data: data
- })
- }
- // 导出
- export function downOrderListXls(params) {
- return request({
- url: '/order/orderInfo/teamOrderlistExport',
- method: 'get',
- responseType: 'blob',
- params
- });
- }
- // 对公支付
- export const teamOrderReSubmitApi = (data) => {
- return request({
- url: '/member/marketTeamApply/teamOrderReSubmit',
- method: 'post',
- data: data
- })
- }
- // 代客下单
- export const teamPayOrderUrlApi = (params) => {
- return request({
- url: '/member/marketTeam/teamPayOrderUrl',
- method: 'get',
- params: params
- })
- }
- // 获取余额信息
- // export const getBalanceInfo = (params) => {
- // return request({
- // url: '/member/marketTeam/getBalanceInfo',
- // method: 'get',
- // params: params
- // })
- // }
- // 余额支付
- export const balancePay = (data) => {
- return request({
- url: '/order/orderInfo/gotoTeamBalancePay',
- method: 'post',
- data: data
- })
- }
- // 授信额度支付
- export const creditPay = (data) => {
- return request({
- url: '/order/orderInfo/gotoTeamQuotaPay',
- method: 'post',
- data: data
- })
- }
|