修改签到打卡

This commit is contained in:
jiangyanshan
2025-12-17 14:17:10 +08:00
parent fc8a324a9f
commit 7b0a2472a3
2 changed files with 497 additions and 292 deletions

View File

@@ -10,23 +10,34 @@ export function addStartMap(data) {
});
}
//出差打卡接口
export function businessTripClockIn(data) {
return request.post({
url: '/crm/app/appVisistMap/businessTripClockIn',
data
},{isTransformResponse:false});
}
// //出差打卡接口
// export function businessTripClockIn(data) {
// return request.post({
// url: '/crm/app/appVisistMap/businessTripClockIn',
// data
// },{isTransformResponse:false});
// }
// //新增地图开始打卡接口
// export function addStartMapForClockIn(data) {
// return request.post({
// url: "/crm/app/appVisistMap/StartaddForClockIn",
// data,
// },{
// isTransformResponse:false
// });
// }
//出差打卡接口
export function businessTripClockIn(data) {
return request('/app/appVisistMap/businessTripClockIn', data, 'POST', 'application/json;charset=UTF-8');
}
//新增地图开始打卡接口
export function addStartMapForClockIn(data) {
return request('/app/appVisistMap/StartaddForClockIn', data, 'POST', 'application/json;charset=UTF-8');
}
//新增地图开始打卡接口
export function addStartMapForClockIn(data) {
return request.post({
url: "/crm/app/appVisistMap/StartaddForClockIn",
data,
},{
isTransformResponse:false
});
}
//打卡信息查看
export function CheckInInformationViewing(data) {