|
@@ -81,7 +81,7 @@ class Emp extends EmpBaseController
|
|
|
*/
|
|
|
public function apply()
|
|
|
{
|
|
|
- $comjobs = ComJobsModel::field(['title as text', 'id as value'])->where('workerid', $this->worker->id)->where('status', '>', 2)->select()->toArray();
|
|
|
+ $comjobs = \app\common\model\ComJobs::field(['title as text', 'id as value'])->where('workerid', $this->worker->id)->where('status', '>', 2)->select()->toArray();
|
|
|
array_unshift($comjobs, ['text' => '全部岗位', 'value' => 0]);
|
|
|
return view('emp/apply', [
|
|
|
'comjobs' => json_encode($comjobs),
|