myChart.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //我的图库
  2. import { httpGet, httpPost } from "@/utils/request.js";
  3. /**
  4. * 我的图库列表
  5. * @param keyword
  6. * @param classify_id 分类ID
  7. */
  8. export const apiMyChartList=params=>{
  9. return httpGet('/my_chart/list',params)
  10. }
  11. /**
  12. * 我的图库分类列表
  13. */
  14. export const apiMyChartClassifyList=()=>{
  15. return httpGet('/my_chart_classify/list',{})
  16. }
  17. /**
  18. * 新增我的图库分类
  19. * @param classify_name
  20. */
  21. export const apiMyChartClassifyAdd=params=>{
  22. return httpPost('/my_chart_classify/add',params)
  23. }
  24. /**
  25. * 编辑我的图库分类
  26. * @param classify_name
  27. * @param classify_id
  28. */
  29. export const apiMyChartClassifyEdit=params=>{
  30. return httpPost('/my_chart_classify/edit',params)
  31. }
  32. /**
  33. * 删除我的图库分类
  34. * @param classify_id
  35. */
  36. export const apiMyChartClassifyDel=params=>{
  37. return httpPost('/my_chart_classify/del',params)
  38. }
  39. /**
  40. * 排序我的图库分类
  41. * @param list<item>:{ "classify_id": 1, //分类ID "sort": 3 //排序}
  42. */
  43. export const apiMyChartClassifySort=params=>{
  44. return httpPost('/my_chart_classify/sort',params)
  45. }