index.js 553 B

123456789101112131415161718192021222324
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. /** *
  3. * 修改欠款额度
  4. */
  5. export const updateDebtLimit = data => {
  6. return https.get('/custom/update-debt-limit', data)
  7. }
  8. export const updateCustomBlack = data => {
  9. return https.get('/custom/set-black', data)
  10. }
  11. export const changeDiscount = data => {
  12. return https.get('/custom/change-discount', data)
  13. }
  14. export const changeLevel = data => {
  15. return https.get('/custom/change-level', data)
  16. }
  17. export const debtChangeList = data => {
  18. return https.get('/custom-debt-change/list', data)
  19. }