linwu 1 year ago
parent
commit
cd5b9dbb99
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/mobile/controller/Emp.php

+ 1 - 1
app/mobile/controller/Emp.php

@@ -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),