(uuid: string)
| 40 | } |
| 41 | |
| 42 | export function copyAppOrPage(uuid: string): Promise<BaseResult> { |
| 43 | return axiosInstance.get(`/api/page/copy`, { |
| 44 | params: { |
| 45 | uuid |
| 46 | } |
| 47 | }); |
| 48 | } |
| 49 | |
| 50 | export function movePage(origin: string, target: string): Promise<BaseResult> { |
| 51 | return axiosInstance.get(`/api/page/move`, { |