follow-client.js 342 B

1234567891011121314151617
  1. import { useRequest } from '../../../api'
  2. export function ajaxFollowClientInfo(data) {
  3. return useRequest({
  4. url: '/publicapply/customer/check',
  5. method: 'post',
  6. data: data
  7. })
  8. }
  9. export function ajaxFollowClientChange(data) {
  10. return useRequest({
  11. url: '/publicapply/customer/attention',
  12. method: 'post',
  13. data
  14. })
  15. }