1234567891011121314151617 |
- import { service } from "./request";
- export function convertUrl(params) {
- return service({
- url: `/post/editor/convertUrl`,
- method: 'post',
- data: params
- })
- }
- export function getAllPostEditorAppData(params) {
- return service({
- url: `/post/editor/getAllPostEditorAppData`,
- method: 'post',
- data: params
- })
- }
|