Otsuka-APP/api/AccountPriceFinallReview.js

30 lines
885 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import request from '@/utils/request'
// 查询账期价格复审主列表
export const getPriceFinallReviewList = (data, query) => {
return request({
method: 'post',
url: '/bussiness/baseusercredithistory/credit-period-repeatedly-review-list',
data,
params: query,
})
}
//账期额度复审列表(两个列表一个接口)
//账期列表type是0额度列表type是零1
export const getLastPaymentAndQuotaList = (data, query) => {
return request({
method: 'post',
url: '/bussiness/baseusercredithistory/goods-credit-period-repeatedly-review-list',
params: query,
data: data
})
}
export const directorLastReviewPayment = (query) => {
return request({
method: 'put',
url: '/bussiness/baseusercredithistory/goods-credit-period-repeatedly-review',
params: query,
})
}