ll
liukangdong
2024-12-30 7b787644ada7a7bf84b397c9e50868cceb703d7c
h5/api/driver.js
@@ -16,6 +16,14 @@
    data
  })
}
// 司机验证码登录
export const loginDriverWithCode = (data) => {
  return http({
    url: 'loginDriverWithCode',
    method: 'post',
    data
  })
}
// 司机首页
export const driverHomeData = (data) => {
  return http({
@@ -148,4 +156,37 @@
    method: 'get',
    data
  })
}
// 司机提报
// 任务列表
export const putTaskList = (data) => {
  return http({
    url: 'visitsAdmin/cloudService/tms/taskList',
    method: 'post',
    data
  })
}
// 任务详情
export const putTaskDetail = (data) => {
  return http({
    url: 'visitsAdmin/cloudService/tms/taskDetail',
    method: 'post',
    data
  })
}
// 任务 到货提交
export const putDriverArrival = (data) => {
  return http({
    url: 'visitsAdmin/cloudService/tms/driverArrival',
    method: 'post',
    data
  })
}
// 任务 启动
export const putDriverStart = (data) => {
  return http({
    url: 'visitsAdmin/cloudService/tms/driverStart',
    method: 'post',
    data
  })
}