1234567891011121314151617181920 |
- import request from '@/router/axios';
- //凭证配置列表
- export function customerList(data,moduleName) {
- return request({
- url: 'api/trade-finance/jdmodule/list',
- method: 'get',
- params: {
- ...data,
- moduleName
- }
- })
- }
- //模块名称字典获取
- export const getDeptLazyTree = () => {
- return request({
- url: '/api/blade-system/dict-biz/dictionary?code=voucher_type',
- method: 'get'
- })
- }
|