complaintDetail.js 876 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import request from '@/utils/request';
  2. // 客诉跟进信息详情接口
  3. export function getComplaintCustomerClueInfoById(query) {
  4. return request({
  5. url: '/mobile/customerClueInfo/getComplaintCustomerClueInfoById',
  6. method: 'get',
  7. params: query,
  8. });
  9. }
  10. // 新增客诉跟进信息答案接口
  11. export function insertCustomerClueAnswerKs(data) {
  12. return request({
  13. url: '/mobile/customerClueInfo/insertCustomerClueAnswerKs',
  14. method: 'post',
  15. data,
  16. });
  17. }
  18. // 客资分类字典接口
  19. export function customerClassify(query) {
  20. return request({
  21. url: '/mobile/customerClueInfo/type/customerClassify',
  22. method: 'get',
  23. params: query,
  24. });
  25. }
  26. // 客资子类字典接口
  27. export function customerSubClassify(query) {
  28. return request({
  29. url: '/mobile/customerClueInfo/type/customerSubClassify',
  30. method: 'get',
  31. params: query,
  32. });
  33. }