follow-client.js 362 B

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