You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
729 B
31 lines
729 B
/** |
|
* @program: kicc-ui |
|
* @description: 地图常量枚举 |
|
* @author: wangxiang4 |
|
* @create: 2022/4/9 |
|
*/ |
|
|
|
import { MapLogistic } from '/@/api/platform/common/entity/mapLogistic'; |
|
import { cloneDeep } from 'lodash-es'; |
|
|
|
export const defaultMapData: ()=> MapLogistic = ()=> cloneDeep({ |
|
name: '', |
|
courierUserId: '', |
|
courierUserName: '', |
|
courierLng: null, |
|
courierLat: null, |
|
sendOrderId: '', |
|
sendOrderName: '', |
|
sendOrderTaskType: '', |
|
sendOrderLng: null, |
|
sendOrderLat: null, |
|
fileId: [], |
|
estimateTime: '', |
|
requireTime: '', |
|
/** 地图任务列表 */ |
|
mapTask: [], |
|
/** 地图预览点列表 */ |
|
mapLogisticPoint: [], |
|
/** 地图转办任务预设标记点列表 */ |
|
mapTaskPresetLogisticPoint:[] |
|
});
|
|
|