|
|
@@ -428,10 +428,10 @@ class UserController extends BaseController {
|
|
|
if($user){
|
|
|
$userInfo['REAL_NAME'] = $user['REAL_NAME'];
|
|
|
$allChildUser = UserNetwork::getFirstFloorChildren($userId);
|
|
|
- $isLocation = [1 => '左-', 2 => '中-', 3 => '右-'];
|
|
|
+ $isLocation = [1 => 'Left-', 2 => 'Right-'];
|
|
|
if($allChildUser) {
|
|
|
foreach ($allChildUser as $child) {
|
|
|
- $isLocation[$child['RELATIVE_LOCATION']].= '满';
|
|
|
+ $isLocation[$child['RELATIVE_LOCATION']].= 'Filled';
|
|
|
}
|
|
|
}
|
|
|
$userInfo['isLocation'] = '('.implode(',',$isLocation).')';
|