matters.js 686 B

123456789101112131415161718192021222324
  1. import axios from '@/utils/axios'
  2. export default {
  3. //添加后续跟进事项
  4. addMatters(params){
  5. return axios.post('/report/api/followUps/add',params)
  6. },
  7. //查询后续跟进事项
  8. queryMatters(params){
  9. return axios.post('/report/api/followUps/query',params)
  10. },
  11. //修改后续跟进事项
  12. updateMatters(params){
  13. return axios.post('/report/api/followUps/update',params)
  14. },
  15. //删除后续跟进事项
  16. deleteMatters(params){
  17. return axios.post('/report/api/followUps/delete',params)
  18. },
  19. //更新登记结果
  20. register(params){
  21. return axios.post('/report/api/followUps/register',params)
  22. },
  23. }