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.

10 lines
343 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* 居家照护type=2服务地址优先取被服务人档案 address兼容历史订单上的 city 字段
*/
export function homeCareServiceAddress(orderLike) {
if (!orderLike || Number(orderLike.type) !== 2) return ''
const ua = orderLike.user_archive
if (ua && ua.address) return ua.address
return orderLike.city || ''
}