Merge branch release/21.7.4 of zentao/zentaopms (#10645)

This commit is contained in:
刘刚
2025-07-30 08:56:29 +08:00
committed by Gitfox
+1 -1
View File
@@ -2284,7 +2284,7 @@ class doc extends control
$this->view->orderBy = $orderBy;
$this->view->recPerPage = $recPerPage;
$this->view->pageID = $pageID;
$this->view->users = $this->loadModel('user')->getPairs('noclosed,noletter');
$this->view->users = $this->dao->select('account,realname,avatar')->from(TABLE_USER)->where('deleted')->eq('0')->fetchAll('account');
$this->view->title = $this->lang->doc->quick;
$this->display();
}