阅行客电子档案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
512 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. import request from '@/utils/request'
  2. // 根据门类父id获取卷内列表列
  3. export function FetchInitCategoryViewTable(params) {
  4. return request({
  5. url: 'api/collect/initCategoryViewTable',
  6. method: 'get',
  7. params
  8. })
  9. }
  10. // 根据门类父id获取卷内列表
  11. export function FetchInitCategoryView(params) {
  12. return request({
  13. url: 'api/collect/initCategoryView',
  14. method: 'get',
  15. params
  16. })
  17. }
  18. export default { FetchInitCategoryViewTable, FetchInitCategoryView }