(data: ApplicationCreate)
| 18 | } |
| 19 | |
| 20 | export function updateApp(data: ApplicationCreate): Promise<BaseResult> { |
| 21 | return axiosInstance.post(`/api/page/update`, { |
| 22 | ...data, |
| 23 | type: 1 |
| 24 | }); |
| 25 | } |
| 26 | |
| 27 | export function updatePage(data: PageCreate): Promise<BaseResult> { |
| 28 | return axiosInstance.post(`/api/page/update`, { |