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
21 lines
512 B
import request from '@/utils/request'
|
|
|
|
// 根据门类父id获取卷内列表列
|
|
export function FetchInitCategoryViewTable(params) {
|
|
return request({
|
|
url: 'api/collect/initCategoryViewTable',
|
|
method: 'get',
|
|
params
|
|
})
|
|
}
|
|
|
|
// 根据门类父id获取卷内列表
|
|
export function FetchInitCategoryView(params) {
|
|
return request({
|
|
url: 'api/collect/initCategoryView',
|
|
method: 'get',
|
|
params
|
|
})
|
|
}
|
|
|
|
export default { FetchInitCategoryViewTable, FetchInitCategoryView }
|