index.ts 540 B

1234567891011121314151617
  1. import request from '@/config/axios'
  2. import { type CustomerVO } from '../customer'
  3. import { type ClueVO } from '../clue'
  4. // 查询客户列表
  5. // TODO @芋艿:看看是不是后续融合到 getCustomerPage 里;
  6. export const getTodayCustomerPage = async (params) => {
  7. return await request.get({ url: `/crm/backlog/today-customer-page`, params })
  8. }
  9. // 查询线索列表
  10. export const getFollowLeadsPage = async (params) => {
  11. return await request.get({ url: `/crm/backlog/page`, params })
  12. }
  13. export { type CustomerVO, type ClueVO }