track-control.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. import TrackService from "../service/track-service.js";
  2. import ApiResult from "../config/api.js";
  3. const TrackControl = {
  4. list: async (req, res) => {
  5. try {
  6. TrackService.list(req.body).then(data => {
  7. res.send(new ApiResult().success(data))
  8. }).catch((e) => {
  9. res.send(new ApiResult().error(null, e))
  10. })
  11. } catch (e) {
  12. res.send(new ApiResult().error(e))
  13. }
  14. },
  15. page: async (req, res) => {
  16. try {
  17. TrackService.page(req.body).then(data => {
  18. res.send(new ApiResult().success(data))
  19. }).catch((e) => {
  20. res.send(new ApiResult().error(null, e))
  21. })
  22. } catch (e) {
  23. res.send(new ApiResult().error(e))
  24. }
  25. },
  26. info: async (req, res) => {
  27. try {
  28. TrackService.info(req.params.id).then(data => {
  29. res.send(new ApiResult().success(data))
  30. }).catch((e) => {
  31. res.send(new ApiResult().error(null, e))
  32. })
  33. } catch (e) {
  34. res.send(new ApiResult().error(e))
  35. }
  36. },
  37. add: async (req, res) => {
  38. try {
  39. TrackService.add(req.body).then(data => {
  40. res.send(new ApiResult().success(data))
  41. }).catch((e) => {
  42. res.send(new ApiResult().error(null, e))
  43. })
  44. } catch (e) {
  45. res.send(new ApiResult().error(e))
  46. }
  47. },
  48. edit: async (req, res) => {
  49. try {
  50. TrackService.edit(req.body).then(data => {
  51. res.send(new ApiResult().success(data))
  52. }).catch((e) => {
  53. res.send(new ApiResult().error(null, e))
  54. })
  55. } catch (e) {
  56. res.send(new ApiResult().error(e))
  57. }
  58. },
  59. del: async (req, res) => {
  60. try {
  61. TrackService.del(req.params?.ids?.split(',')).then(data => {
  62. res.send(new ApiResult().success(data))
  63. }).catch((e) => {
  64. res.send(new ApiResult().error(null, e))
  65. })
  66. } catch (e) {
  67. res.send(new ApiResult().error(e))
  68. }
  69. },
  70. infoBySourceId: async (req, res) => {
  71. try {
  72. TrackService.queryBy({sourceId: req.params.sourceId}).then(data => {
  73. res.send(new ApiResult().success(data))
  74. }).catch((e) => {
  75. res.send(new ApiResult().error(null, e))
  76. })
  77. } catch (e) {
  78. res.send(new ApiResult().error(e))
  79. }
  80. },
  81. }
  82. export default TrackControl