credentials.js 471 B

1234567891011121314151617181920
  1. import request from '@/router/axios';
  2. //凭证配置列表
  3. export function customerList(data,moduleName) {
  4. return request({
  5. url: 'api/trade-finance/jdmodule/list',
  6. method: 'get',
  7. params: {
  8. ...data,
  9. moduleName
  10. }
  11. })
  12. }
  13. //模块名称字典获取
  14. export const getDeptLazyTree = () => {
  15. return request({
  16. url: '/api/blade-system/dict-biz/dictionary?code=voucher_type',
  17. method: 'get'
  18. })
  19. }