feat: 出差打卡

This commit is contained in:
wangzhuo
2025-09-19 13:42:31 +08:00
parent 74f4712e9d
commit f76757198c
3 changed files with 270 additions and 251 deletions

View File

@@ -0,0 +1,22 @@
/**
* @description 定位API的配置
* @type {{URL: string, token: string}}
*/
export const MapApiConfig = {
/**
* @description API接口地址
*/
URL: 'https://tiles.geovisearth.com/geo/v1/geocode/regeo',
/**
* @description 接口鉴权Token
*/
token: '66c87c897f0251295afdc794e4fbf73046a070338a726fe04f06cece6cb1ffdf',
/**
* @description 打卡类型:西安办事处
*/
XI_AN_BAN: {latitude: 34.1360, longitude: 108.9126, typeName: '西安办事处位置打卡'},
/**
* @description 打卡类型:第三方维护
*/
OTHER: {typeName: '第三方维护打卡'}
}