作者 耿培杰

修改接口

... ... @@ -74,6 +74,7 @@ function get_price($arr)
//会员特价
if (!empty($arr['is_vip_price']) && $arr['is_vip_price'] == 1 && $arr['user_type'] == 2) return $arr['vip_price'];
//团购价格
if (!empty($arr['is_group']) && $arr['is_group'] == 1 && $arr['user_type'] == 1) return $arr['group_price'];
if (!empty($arr['is_group']) && $arr['is_group'] == 1 && $arr['user_type'] == 2) return get_vip_price_default($arr['group_price']);
if (!empty($arr['is_group']) && $arr['is_group'] == 1 && $arr['user_type'] == 3) return get_staff_price_default($arr['group_price']);
if (!empty($arr['is_group']) && $arr['is_group'] == 1 && $arr['user_type'] == 4) return get_agency_price_default($arr['group_price']);
... ...