行程管理

This commit is contained in:
zsh
2024-12-19 09:23:12 +08:00
parent a04d21bd8f
commit 522ec8f40d
6 changed files with 579 additions and 150 deletions
+20
View File
@@ -61,3 +61,23 @@ export const delNotebook = (id: string | number | Array<string | number>) => {
method: 'delete'
});
};
/**
* 查询标签
* @param id
*/
export const tagall = (): AxiosPromise<NotebookVO> => {
return request({
url: '/manage/tag/all',
method: 'get'
});
};
/**
* 查询景点
* @param id
*/
export const contentall = (): AxiosPromise<NotebookVO> => {
return request({
url: '/manage/content/all',
method: 'get'
});
};