fileIndex.api.ts 223 B

1234567891011
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. list = '/ventanaly-sharefile/fileServer/queryEachFileNum',
  4. }
  5. /**
  6. * 列表接口
  7. * @param params
  8. */
  9. export const list = () => defHttp.post({ url: Api.list });