修改签到打卡

This commit is contained in:
jiangyanshan
2025-12-18 10:59:40 +08:00
parent a0f783fc5a
commit c36aa01f0a
2 changed files with 24 additions and 36 deletions

View File

@@ -3,41 +3,30 @@ import request from "@/utils/request";
//新增地图开始签到接口
export function addStartMap(data) {
return request.post({
url: "/crm/app/appVisistMap/Startadd",
url: "/crm/jys/app/appVisistMap/Startadd",
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 businessTripClockIn(data) {
return request.post({
url: '/crm/jys/app/appVisistMap/businessTripClockIn',
data
},{isTransformResponse:false});
}
//新增地图开始打卡接口
export function addStartMapForClockIn(data) {
return request.post({
url: "/crm/jys/app/appVisistMap/StartaddForClockIn",
data,
},{
isTransformResponse:false
});
}
//打卡信息查看
export function CheckInInformationViewing(data) {