行程管理
This commit is contained in:
@@ -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'
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user