storeCustomerSign.js 949 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import request from '@/utils/request'
  2. // 查询门店大客户签约管理列表
  3. export function listStoreCustomerSign(query) {
  4. return request({
  5. url: '/sfa/storeCustomerSign/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询门店大客户签约管理详细
  11. export function getStoreCustomerSign(signId) {
  12. return request({
  13. url: '/sfa/storeCustomerSign/' + signId,
  14. method: 'get'
  15. })
  16. }
  17. // 新增门店大客户签约管理
  18. export function addStoreCustomerSign(data) {
  19. return request({
  20. url: '/sfa/storeCustomerSign',
  21. method: 'post',
  22. data: data
  23. })
  24. }
  25. // 修改门店大客户签约管理
  26. export function updateStoreCustomerSign(data) {
  27. return request({
  28. url: '/sfa/storeCustomerSign',
  29. method: 'put',
  30. data: data
  31. })
  32. }
  33. // 删除门店大客户签约管理
  34. export function delStoreCustomerSign(signId) {
  35. return request({
  36. url: '/sfa/storeCustomerSign/' + signId,
  37. method: 'delete'
  38. })
  39. }