UNPKG

hik-map

Version:

- 提炼自浙江海康智联科技有限公司中后台产品的交互语言和视觉风格。 - 开箱即用的高质量 Vue 组件。

36 lines (34 loc) 885 B
export function warnFilter(e) { if (!e.lnglat || e.lnglat.length === 0) { console.warn('lnglat:未获取到驶入经纬度'); return { status: 'lnglatfalse', }; } else if (!e.id || e.id === '') { console.warn('id:id不能为空'); return { status: 'idfalse', }; } else if (e.img === '' || !e.img) { console.warn('img:未获取到车辆img,将使用默认图片'); return { status: 'imgfalse', content: 'https://vdata.amap.com/icons/b18/1/2.png', }; } else if (!e.size || e.size.length === 0) { console.warn('size:车辆大小为空,将采用默认大小'); return { status: 'sizefalse', content: [10, 10], }; } else if (!e.mileage && e.mileage !== 0) { return { status: 'mileagefalse', content: 0.5, }; } else { return { status: 'pass', }; } }