Files
ys-app/src/api/crm/activity/map.js

60 lines
1.2 KiB
JavaScript
Raw Normal View History

2025-08-25 16:41:33 +08:00
import request from "@/utils/request";
//新增地图开始签到接口
export function addStartMap(data) {
return request.post({
2025-08-26 15:55:46 +08:00
url: "/crm/app/appVisistMap/Startadd",
2025-08-25 16:41:33 +08:00
data,
},{
isTransformResponse:false
});
}
2025-09-19 13:42:31 +08:00
//出差打卡接口
export function businessTripClockIn(data) {
return request.post({
url: '/crm/app/appVisistMap/businessTripClockIn',
data
},{isTransformResponse:false});
}
2025-08-25 16:41:33 +08:00
//新增地图开始打卡接口
export function addStartMapForClockIn(data) {
return request.post({
2025-08-26 15:55:46 +08:00
url: "/crm/app/appVisistMap/StartaddForClockIn",
2025-08-25 16:41:33 +08:00
data,
},{
isTransformResponse:false
});
}
//打卡信息查看
export function CheckInInformationViewing(data) {
return request.get({
2025-08-26 15:55:46 +08:00
url: "/crm/app/appVisistMap/DKList",
2025-08-25 16:41:33 +08:00
data
},{
isTransformResponse:false
});
}
//签到统计
export function getSigninList(data) {
return request.get({
2025-08-26 15:55:46 +08:00
url: "/crm/app/appVisistMap/QueryBased",
2025-08-25 16:41:33 +08:00
data
},{
isTransformResponse:false
});
}
//不签到统计
export function getNoSigninList(data) {
return request.get({
2025-08-26 15:55:46 +08:00
url: "/crm/app/appVisistMap/QueryBasedIsNull",
2025-08-25 16:41:33 +08:00
data
},{
isTransformResponse:false
});
}