细节调整

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2019-07-15 07:18:37 +08:00
parent 6743a6023f
commit 76e4b9712c
3 changed files with 13 additions and 13 deletions

View File

@ -30,16 +30,16 @@ class Member extends CommonModel
$organizationList = [];
if ($list) {
foreach ($list as &$item) {
$departments = '';
$departments = [];
$departmentCodes = $item['department_code'];
if ($departmentCodes) {
$departmentCodes = explode(',', $departmentCodes);
foreach ($departmentCodes as $departmentCode) {
$department = Department::where(['code' => $departmentCode])->field('name')->find();
$departments .= "{$department['name']} ";
$departments[] = $department['name'];
}
}
$item['department'] = $departments;
$item['department'] = implode(' - ', $departments);
$organization = Organization::where(['code' => $item['organization_code']])->find();
if ($organization) {
$organizationList[] = $organization;
@ -50,7 +50,7 @@ class Member extends CommonModel
$member['is_owner'] = $list[0]['is_owner'];
$member['authorize'] = $list[0]['authorize'];
$member['position'] = $list[0]['position'];
$member['department'] = $list[0]['department'];
$member['department'] = implode(' - ', $list[0]['department']);
setCurrentMember($member);
!empty($member['authorize']) && NodeService::applyProjectAuthNode();

View File

@ -78,16 +78,16 @@ class Account extends BasicApi
if ($memberInfo) {
$item['avatar'] = $memberInfo['avatar'];
}
$departments = '';
$departments = [];
$departmentCodes = $item['department_code'];
if ($departmentCodes) {
$departmentCodes = explode(',', $departmentCodes);
foreach ($departmentCodes as $departmentCode) {
$department = \app\common\Model\Department::where(['code' => $departmentCode])->field('name')->find();
$departments .= "{$department['name']} ";
$departments[] = $department['name'];
}
}
$item['departments'] = $departments;
$item['departments'] = implode(' - ', $departments);
}
unset($item);
}
@ -103,16 +103,16 @@ class Account extends BasicApi
}
$memberAccount = $this->model->where(['code' => $code])->field('id', true)->find();
if ($memberAccount) {
$departments = '';
$departments = [];
$departmentCodes = $memberAccount['department_code'];
if ($departmentCodes) {
$departmentCodes = explode(',', $departmentCodes);
foreach ($departmentCodes as $departmentCode) {
$department = \app\common\Model\Department::where(['code' => $departmentCode])->field('name')->find();
$departments .= "{$department['name']} ";
$departments[] = $department['name'];
}
}
$memberAccount['departments'] = $departments;
$memberAccount['departments'] = implode(' - ', $departments);
}
$this->success('', $memberAccount);
}

View File

@ -60,17 +60,17 @@ class Index extends BasicApi
$memberAccount = MemberAccount::where(['member_code' => $member['code'], 'organization_code' => $organizationCode])->find();
$member = Member::where(['account' => $member['account']])->order('id asc')->find()->toArray();
$departments = '';
$departments = [];
$departmentCodes = $memberAccount['department_code'];
if ($departmentCodes) {
$departmentCodes = explode(',', $departmentCodes);
foreach ($departmentCodes as $departmentCode) {
$department = Department::where(['code' => $departmentCode])->field('name')->find();
$departments .= "{$department['name']} ";
$departments[] = $department['name'];
}
}
$member['position'] = $memberAccount['position'];
$member['department'] = $departments;
$member['department'] = implode(' - ', $departments);
$member['account_id'] = $memberAccount['id'];
$member['is_owner'] = $memberAccount['is_owner'];
$member['authorize'] = $memberAccount['authorize'];