|
...
|
...
|
@@ -33,6 +33,7 @@ use App\Models\Project\RenewLog; |
|
|
|
use App\Models\RankData\RankData;
|
|
|
|
use App\Models\Task\Task;
|
|
|
|
use App\Models\Visit\Visit;
|
|
|
|
use App\Models\WebSetting\WebLanguage;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
|
...
|
...
|
@@ -541,7 +542,7 @@ class ProjectController extends BaseController |
|
|
|
if(isset($this->map['entry_position']) && !empty($this->map['entry_position'])){
|
|
|
|
$this->map['entry_position'] = ['in',$this->map['entry_position']];
|
|
|
|
}
|
|
|
|
$lists = $hrManagerModel->list($this->map,'id',['id','manage_id','name','entry_position','is_leader']);
|
|
|
|
$lists = $hrManagerModel->list($this->map,['sort','id'],['id','manage_id','name','entry_position','is_leader']);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
|
|
|
|
|
...
|
...
|
@@ -872,4 +873,17 @@ class ProjectController extends BaseController |
|
|
|
}
|
|
|
|
$this->response('success',Code::SUCCESS,$zone_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :获取小语种列表
|
|
|
|
* @name :lists
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/11/30 10:59
|
|
|
|
*/
|
|
|
|
public function languageLists(){
|
|
|
|
$webLanguageModel = new WebLanguage();
|
|
|
|
$lists = $webLanguageModel->list();
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|