This commit is contained in:
zsh
2024-12-19 18:26:20 +08:00
parent ec93faf572
commit a5ce3a22c5
3 changed files with 109 additions and 171 deletions
+4 -3
View File
@@ -73,11 +73,12 @@ export const tagall = (): AxiosPromise<NotebookVO> => {
};
/**
* 查询景点
* @param id
* @param query
*/
export const contentall = (): AxiosPromise<NotebookVO> => {
export const contentall = (query?: NotebookQuery): AxiosPromise<NotebookVO> => {
return request({
url: '/manage/content/all',
method: 'get'
method: 'get',
params: query
});
};