|
|
|
@ -1235,7 +1235,7 @@ class MemberController extends ThinkController
|
|
|
|
|
{
|
|
|
|
|
if ($accounts) $map['account'] = ['in', array_unique(explode("\n", $accounts))];
|
|
|
|
|
if ($id) $map['id'] = ['in', array_unique(explode("\n", $id))];
|
|
|
|
|
$users = M('user', 'tab_')->where($map)->field('id')->select();
|
|
|
|
|
$users = M('user', 'tab_')->where($map)->field('id,lock_status')->select();
|
|
|
|
|
if($_POST['lock_remark']){
|
|
|
|
|
$res = M('user', 'tab_')->where($map)->setField(['lock_status' => $lock_status,"lock_remark" => $_POST['lock_remark']]);
|
|
|
|
|
}else{
|
|
|
|
@ -1244,10 +1244,11 @@ class MemberController extends ThinkController
|
|
|
|
|
|
|
|
|
|
if ($res) {
|
|
|
|
|
foreach ($users as $item) {
|
|
|
|
|
if($item['lock_status'] != $lock_status){
|
|
|
|
|
$this->userEditOperationLog($item['id'],"锁定/解锁");
|
|
|
|
|
}
|
|
|
|
|
\Think\Log::actionLog('Member/lock_status', 'Member', $item['id']);
|
|
|
|
|
}
|
|
|
|
|
$this->userEditOperationLog($id,"锁定/解锁");
|
|
|
|
|
|
|
|
|
|
$this->success('操作成功!');
|
|
|
|
|
} else {
|
|
|
|
|
$this->error('操作失败!');
|
|
|
|
|