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

2 months ago
/**
* 居家照护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 || ''
}