43 lines
740 B
JavaScript
43 lines
740 B
JavaScript
import request from '@/utils/request';
|
|
|
|
// 推文列表
|
|
export async function lawlist(data) {
|
|
return request({
|
|
path: '/knowledge/law/list',
|
|
data,
|
|
type: 'get',
|
|
});
|
|
}
|
|
|
|
export async function hiddenlist(data) {
|
|
return request({
|
|
path: '/knowledge/hidden/type/list',
|
|
data,
|
|
type: 'get',
|
|
});
|
|
}
|
|
|
|
export async function librarylist(data) {
|
|
return request({
|
|
path: '/knowledge/hidden/libaray/list',
|
|
data,
|
|
type: 'get',
|
|
});
|
|
}
|
|
|
|
export async function libraryquery(data) {
|
|
return request({
|
|
path: '/knowledge/hidden/libaray/query',
|
|
data,
|
|
type: 'get',
|
|
});
|
|
}
|
|
|
|
export async function chemicaleslist(data) {
|
|
return request({
|
|
path: '/knowledge/chemical/list',
|
|
data,
|
|
type: 'get',
|
|
});
|
|
}
|