|
@@ -35,23 +35,23 @@ class UserCompanyBasic extends BaseController
|
|
|
->leftJoin('user b', 'a.id=b.account_id and b.status=1')
|
|
|
->where($condition)
|
|
|
->page($post['page'], $post['size'])
|
|
|
- ->append(['plat', 'company_relaton'])
|
|
|
- ->withAttr('plat', function ($val, $da) {
|
|
|
- return Db::name('account_plat')
|
|
|
- ->alias('a')
|
|
|
- ->leftJoin('platform b', 'a.plat_code=b.plat_code and b.is_del=0 and b.status=1')
|
|
|
- ->where(['a.status' => 1, 'a.is_del' => 0, 'a.account_id' => $da['id']])
|
|
|
- ->field('a.plat_code,plat_name')
|
|
|
- ->select()
|
|
|
- ->toArray();
|
|
|
- })
|
|
|
- ->withAttr('company_relaton', function ($val, $da) {
|
|
|
- return Db::name('account_company')
|
|
|
- ->where(['account_id' => $da['id'], 'is_del' => 0])
|
|
|
- ->field('companyCode,companyName,company_type,is_main,status')
|
|
|
- ->select()
|
|
|
- ->toArray();
|
|
|
- })
|
|
|
+// ->append(['plat', 'company_relaton'])
|
|
|
+// ->withAttr('plat', function ($val, $da) {
|
|
|
+// return Db::name('account_plat')
|
|
|
+// ->alias('a')
|
|
|
+// ->leftJoin('platform b', 'a.plat_code=b.plat_code and b.is_del=0 and b.status=1')
|
|
|
+// ->where(['a.status' => 1, 'a.is_del' => 0, 'a.account_id' => $da['id']])
|
|
|
+// ->field('a.plat_code,plat_name')
|
|
|
+// ->select()
|
|
|
+// ->toArray();
|
|
|
+// })
|
|
|
+// ->withAttr('company_relaton', function ($val, $da) {
|
|
|
+// return Db::name('account_company')
|
|
|
+// ->where(['account_id' => $da['id'], 'is_del' => 0])
|
|
|
+// ->field('companyCode,companyName,company_type,is_main,status')
|
|
|
+// ->select()
|
|
|
+// ->toArray();
|
|
|
+// })
|
|
|
->order('a.addtime desc')
|
|
|
->select()
|
|
|
->toArray();
|
|
@@ -130,7 +130,7 @@ class UserCompanyBasic extends BaseController
|
|
|
$acount->saveAll($company_insert);
|
|
|
}
|
|
|
Db::commit();
|
|
|
- return json_show(0, '账户注册成功');
|
|
|
+ return json_show(0, '账户注册成功',['uid'=>$reuslt]);
|
|
|
}
|
|
|
} else throw new Exception();
|
|
|
|
|
@@ -163,7 +163,6 @@ class UserCompanyBasic extends BaseController
|
|
|
'updatetime' => date('Y-m-d H:i:s')
|
|
|
]);
|
|
|
|
|
|
-
|
|
|
Db::name('account_company')
|
|
|
->where(['is_del' => 0])
|
|
|
->whereIn('account_id', $param['ids'])
|
|
@@ -172,7 +171,6 @@ class UserCompanyBasic extends BaseController
|
|
|
'updatetime' => date('Y-m-d H:i:s')
|
|
|
]);
|
|
|
|
|
|
-
|
|
|
Db::commit();
|
|
|
return json_show(0, '删除成功');
|
|
|
} catch (Exception $exception) {
|
|
@@ -287,19 +285,19 @@ class UserCompanyBasic extends BaseController
|
|
|
->alias('a')
|
|
|
->field('a.id,a.username,a.mobile,a.source,a.status,b.nickname,b.sex,b.email,a.addtime,a.updatetime')
|
|
|
->leftJoin('user b', 'a.id=b.account_id')
|
|
|
- ->append(['plat','company_relaton'])
|
|
|
- ->withAttr('plat',function($val,$da){
|
|
|
- return Db::name('account_plat')
|
|
|
- ->alias('a')
|
|
|
- ->leftJoin('platform b', 'a.plat_code=b.plat_code and b.status=1')
|
|
|
- ->where(['a.status' => 1, 'a.is_del' => 0, 'a.account_id' => $da['id']])
|
|
|
- ->column('a.plat_code,plat_name');
|
|
|
- })
|
|
|
- ->withAttr('company_relaton',function($val,$da){
|
|
|
- return Db::name('account_company')
|
|
|
- ->where(['account_id' => $da['id'], 'is_del' => 0, 'status' => 1])
|
|
|
- ->column('companyCode,companyName,company_type,is_main,status');
|
|
|
- })
|
|
|
+// ->append(['plat','company_relaton'])
|
|
|
+// ->withAttr('plat',function($val,$da){
|
|
|
+// return Db::name('account_plat')
|
|
|
+// ->alias('a')
|
|
|
+// ->leftJoin('platform b', 'a.plat_code=b.plat_code and b.status=1')
|
|
|
+// ->where(['a.status' => 1, 'a.is_del' => 0, 'a.account_id' => $da['id']])
|
|
|
+// ->column('a.plat_code,plat_name');
|
|
|
+// })
|
|
|
+// ->withAttr('company_relaton',function($val,$da){
|
|
|
+// return Db::name('account_company')
|
|
|
+// ->where(['account_id' => $da['id'], 'is_del' => 0, 'status' => 1])
|
|
|
+// ->column('companyCode,companyName,company_type,is_main,status');
|
|
|
+// })
|
|
|
->where(['a.id' => $id, 'a.is_del' => 0])
|
|
|
->findOrEmpty();
|
|
|
if (empty($list)) return json_show(1004, '未找到用户信息');
|