toolBoxApi.js 368 B

1234567891011121314151617
  1. import { service } from "./request";
  2. export function convertUrl(params) {
  3. return service({
  4. url: `/post/editor/convertUrl`,
  5. method: 'post',
  6. data: params
  7. })
  8. }
  9. export function getAllPostEditorAppData(params) {
  10. return service({
  11. url: `/post/editor/getAllPostEditorAppData`,
  12. method: 'post',
  13. data: params
  14. })
  15. }