sopUserLogsWx.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. import request from '@/utils/request'
  2. // 查询个微SOP营期列表
  3. export function listSopUserLogsWx(query) {
  4. return request({
  5. url: '/wxSop/sopUserLogsWx/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询个微SOP营期详细
  11. export function getSopUserLogsWx(id) {
  12. return request({
  13. url: '/wxSop/sopUserLogsWx/' + id,
  14. method: 'get'
  15. })
  16. }
  17. // 删除个微SOP营期
  18. export function delSopUserLogsWx(ids) {
  19. return request({
  20. url: '/wxSop/sopUserLogsWx/' + ids,
  21. method: 'delete'
  22. })
  23. }
  24. // 导出个微SOP营期
  25. export function exportSopUserLogsWx(query) {
  26. return request({
  27. url: '/wxSop/sopUserLogsWx/export',
  28. method: 'get',
  29. params: query
  30. })
  31. }
  32. // 批量修改个微SOP营期时间
  33. export function updateLogDate(data) {
  34. return request({
  35. url: '/wxSop/sopUserLogsWx/updateLogDate',
  36. method: 'post',
  37. data: data
  38. })
  39. }
  40. // 查询个微SOP营期详情(客户列表)
  41. export function getSopUserLogsDetail(sopUserId, query) {
  42. return request({
  43. url: '/wxSop/sopUserLogsWx/detail/' + sopUserId,
  44. method: 'get',
  45. params: query
  46. })
  47. }