12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- import TrackService from "../service/track-service.js";
- import ApiResult from "../config/api.js";
- const TrackControl = {
- list: async (req, res) => {
- try {
- TrackService.list(req.body).then(data => {
- res.send(new ApiResult().success(data))
- }).catch((e) => {
- res.send(new ApiResult().error(null, e))
- })
- } catch (e) {
- res.send(new ApiResult().error(e))
- }
- },
- page: async (req, res) => {
- try {
- TrackService.page(req.body).then(data => {
- res.send(new ApiResult().success(data))
- }).catch((e) => {
- res.send(new ApiResult().error(null, e))
- })
- } catch (e) {
- res.send(new ApiResult().error(e))
- }
- },
- info: async (req, res) => {
- try {
- TrackService.info(req.params.id).then(data => {
- res.send(new ApiResult().success(data))
- }).catch((e) => {
- res.send(new ApiResult().error(null, e))
- })
- } catch (e) {
- res.send(new ApiResult().error(e))
- }
- },
- add: async (req, res) => {
- try {
- TrackService.add(req.body).then(data => {
- res.send(new ApiResult().success(data))
- }).catch((e) => {
- res.send(new ApiResult().error(null, e))
- })
- } catch (e) {
- res.send(new ApiResult().error(e))
- }
- },
- edit: async (req, res) => {
- try {
- TrackService.edit(req.body).then(data => {
- res.send(new ApiResult().success(data))
- }).catch((e) => {
- res.send(new ApiResult().error(null, e))
- })
- } catch (e) {
- res.send(new ApiResult().error(e))
- }
- },
- del: async (req, res) => {
- try {
- TrackService.del(req.params?.ids?.split(',')).then(data => {
- res.send(new ApiResult().success(data))
- }).catch((e) => {
- res.send(new ApiResult().error(null, e))
- })
- } catch (e) {
- res.send(new ApiResult().error(e))
- }
- },
- infoBySourceId: async (req, res) => {
- try {
- TrackService.queryBy({sourceId: req.params.sourceId}).then(data => {
- res.send(new ApiResult().success(data))
- }).catch((e) => {
- res.send(new ApiResult().error(null, e))
- })
- } catch (e) {
- res.send(new ApiResult().error(e))
- }
- },
- }
- export default TrackControl
|