| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- import request from '@/utils/request'
- // 查询企业持有融信额度
- export function getCreditLineAll(query) {
- return request({
- url: '/sc-service/report/credit/getCreditLineAll',
- method: 'get',
- params: query
- })
- }
- // 企业融资中额度
- export function getAvailableBalance(query) {
- return request({
- url: '/sc-service/report/credit/getAvailableBalance',
- method: 'get',
- params: query
- })
- }
- // 企业已生效额度
- export function getEffectBalance(query) {
- return request({
- url: '/sc-service/report/credit/getEffectBalance',
- method: 'get',
- params: query
- })
- }
- // 企业已融资(已放款)额度
- export function getLoanBalance(query) {
- return request({
- url: '/sc-service/report/credit/getLoanBalance',
- method: 'get',
- params: query
- })
- }
- // 企业已失效(到期失效)额度
- export function getLoseEffectBalance(query) {
- return request({
- url: '/sc-service/report/credit/getLoseEffectBalance',
- method: 'get',
- params: query
- })
- }
- // 企业已还款(到期失效)额度
- export function getReturnBalance(query) {
- return request({
- url: '/sc-service/report/credit/getReturnBalance',
- method: 'get',
- params: query
- })
- }
- // 企业即将到期额度(30天)
- export function getExpiredBalance(query) {
- return request({
- url: '/sc-service/report/credit/getExpiredBalance',
- method: 'get',
- params: query
- })
- }
- // 企业即将到期额度(30天) -- 列表
- export function getExpiredList(query) {
- return request({
- url: '/sc-service/report/credit/getExpiredList',
- method: 'get',
- params: query
- })
- }
- // 查询平台资金 -- 饼图
- export function getFinanceAmount(query) {
- return request({
- url: '/sc-service/report/credit/getFinanceAmount',
- method: 'get',
- params: query
- })
- }
- // 核心企业额度比例 -- 柱状图
- export function getFinanceAmountAll(query) {
- return request({
- url: '/sc-service/report/credit/getFinanceAmountAll',
- method: 'get',
- params: query
- })
- }
- // 查询核心企业融信授权额度 -- 饼图
- export function getCoreCreditLine(query) {
- return request({
- url: '/sc-service/report/credit/getCoreCreditLine',
- method: 'get',
- params: query
- })
- }
- // 查询企业渠道融信授权额度 -- 列表
- export function getCreditLineList(query) {
- return request({
- url: '/sc-service/report/credit/getCreditLineList',
- method: 'get',
- params: query
- })
- }
- // 查询企业渠道融信开立数量 -- 列表
- export function getCreditLineNumList(query) {
- return request({
- url: '/sc-service/report/credit/getCreditLineNumList',
- method: 'get',
- params: query
- })
- }
- // 融资开立月度统计 -- 柱状图
- export function financeRecordMonth(query) {
- return request({
- url: '/sc-service/report/credit/financeRecordMonth',
- method: 'get',
- params: query
- })
- }
- // 查询核心企业总授信额度
- export function listCreditLineAll(query) {
- return request({
- url: '/sc-service/report/credit/listCreditLineAll',
- method: 'get',
- params: query
- })
- }
- // 查询核心企业总授信额度
- export function listCreditAll(query) {
- return request({
- url: '/sc-service/report/credit/listCreditAll',
- method: 'get',
- params: query
- })
- }
- // 查询核心企业已融资金额
- export function listHasRaised(query) {
- return request({
- url: '/sc-service/report/credit/listHasRaised',
- method: 'get',
- params: query
- })
- }
- // 查询核心企业30天内待还款
- export function listPendingRepayment(query) {
- return request({
- url: '/sc-service/report/credit/listPendingRepayment',
- method: 'get',
- params: query
- })
- }
- // 查询核心企业已放款金额
- export function listRepayment(query) {
- return request({
- url: '/sc-service/report/credit/listRepayment',
- method: 'get',
- params: query
- })
- }
|