You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
491 B

4 weeks ago
  1. import { http } from '@/utils/http.js'
  2. //点击主力追踪
  3. export const getModel1 = () => {
  4. return http({
  5. method: 'GET',
  6. url: '/api/coze/trackingFirst',
  7. })
  8. }
  9. //历史记录列表
  10. export const RecordListApi = (data) => {
  11. return http({
  12. method: 'POST',
  13. url: '/api/coze/mainForceList',
  14. data:data
  15. })
  16. }
  17. //历史记录详情
  18. export const RecordInfoApi = (data) => {
  19. return http({
  20. method: 'POST',
  21. url: '/api/coze/clickRecord',
  22. data:data
  23. })
  24. }