| 123456789101112131415161718192021222324 |
- import https from '@/plugins/luch-request_0.0.7/request'
- /** *
- * 修改欠款额度
- */
- export const updateDebtLimit = data => {
- return https.get('/custom/update-debt-limit', data)
- }
- export const updateCustomBlack = data => {
- return https.get('/custom/set-black', data)
- }
- export const changeDiscount = data => {
- return https.get('/custom/change-discount', data)
- }
- export const changeLevel = data => {
- return https.get('/custom/change-level', data)
- }
- export const debtChangeList = data => {
- return https.get('/custom-debt-change/list', data)
- }
|