api.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. export default {
  2. //登录
  3. common: {
  4. login: {
  5. url: "/web/lgin/userLgin",
  6. auth: false,
  7. method: "POST",
  8. },
  9. applogin: {
  10. url: "/app/wechat/login",
  11. auth: false,
  12. method: "POST",
  13. }
  14. },
  15. home: {
  16. getUserData: {
  17. url: "/web/lgin/getUserRoleInfo",
  18. auth: true,
  19. method: "GET",
  20. },
  21. },
  22. //首页
  23. homePage: {
  24. //配送企业排名
  25. splerCosm: {
  26. url: "/web/weChat/forms/amtSplerCosm",
  27. auth: true,
  28. method: "POST",
  29. },
  30. //关键指标统计
  31. totalCosm: {
  32. url: "/web/weChat/forms/totalCosm",
  33. auth: true,
  34. method: "POST",
  35. },
  36. //耗材类型消耗金额占比
  37. amtCosm: {
  38. url: "/web/weChat/forms/amtCosm",
  39. auth: true,
  40. method: "POST",
  41. },
  42. //耗材消耗数量排名
  43. cntCosm: {
  44. url: "/web/weChat/forms/cntCosm",
  45. auth: true,
  46. method: "POST",
  47. },
  48. //各科室消耗排名
  49. deptCosm: {
  50. url: "/web/weChat/forms/deptCosm",
  51. auth: true,
  52. method: "POST",
  53. },
  54. //消耗数据统计
  55. statCosm: {
  56. url: "/web/weChat/forms/statCosm",
  57. auth: true,
  58. method: "POST",
  59. },
  60. //个人中心
  61. information: {
  62. url: "/app/wechat/select/information",
  63. auth: true,
  64. method: "POST",
  65. },
  66. //个人中心保存
  67. informationData: {
  68. url: "/app/wechat/save/information",
  69. auth: true,
  70. method: "POST",
  71. },
  72. }
  73. }