-
zhangwei
2025-11-11 ec90cbd7680a6f927cb1cea43f33ab7df6d0864c
src/common/request/http.api.js
@@ -230,6 +230,14 @@
   }
}); 
// 收藏项目工人
let collectWorker = (params, config = {}) => http.post(`/api/OrderCompany/ShoucangGongren`, params, {
   custom: {
      methodName: 'collectWorker',
      needToken: true
   }
});
// 保存公司员工为管理员
let SaveStaffAdmin = (params, config = {}) => http.post(`/api/OrderCompany/SaveStaffAdmin`, params, {
   custom: {
@@ -514,6 +522,14 @@
   }
});
// 获取车辆列表
let GetCarList = (params, config = {}) => http.get(`/api/CYOSSetting/GetCarList`, {
   custom: {
      methodName: 'GetCarList',
      needToken: true
   }
});
// 获取&天司机列表
let GetDriversOfWithin7days = (params, config = {}) => http.get(`/api/CYOSSetting/GetDriversOfWithin7days`, {
   custom: {
@@ -626,6 +642,37 @@
   }
});
// 获取问题反馈
let GetProblemPlans = (params, config = {}) => http.post(`/api/CyOSStaff/GetProblemPlans`, params,{
   custom: {
      methodName: 'GetProblemPlans',
      needToken: true
   }
});
// 创建问题反馈
let CreatProblemPlan = (params, config = {}) => http.post(`/api/CyOSStaff/CreatProblemPlan`, params,{
   custom: {
      methodName: 'CreatProblemPlan',
      needToken: true
   }
});
// 获取问题反馈详情
let GetProblemPlanInfo = (KeyId, config = {}) => http.get(`/api/CyOSStaff/GetProblemPlanInfo/${KeyId}`,{
   custom: {
      methodName: 'GetProblemPlanInfo',
      needToken: true
   }
});
// 获取政采员工
let GetStaffList = (KeyId, config = {}) => http.get(`/api/CYOSSetting/GetStaffList`,{
   custom: {
      methodName: 'GetStaffList',
      needToken: true
   }
});
// 将各个定义的接口名称,统一放进对象挂载到vm.$u.api(因为vm就是this,也即this.$u.api)下
export {
@@ -690,6 +737,7 @@
   GetDeliverPlans,
   UpDataDeliverPlans,
   Getdrivers,
   GetCarList,
   GeCorporateClients,
   GetDriversOfWithin7days,
   driverGetDeliverPlans,
@@ -705,7 +753,12 @@
   GetDriverRecords,
   GetClockRoughDraft,
   GetDriverRecordInfo,
   driverGetDriverRecordInfo
   driverGetDriverRecordInfo,
   GetProblemPlans,
   CreatProblemPlan,
   GetStaffList,
   GetProblemPlanInfo,
   collectWorker
};
// }