linwu 2 gadi atpakaļ
vecāks
revīzija
122068b96f
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. 2 1
      app/mobile/controller/Emp.php

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

@@ -81,7 +81,8 @@ class Emp extends EmpBaseController
      */
     public function apply()
     {
-        $comjobs = \app\common\model\ComJobs::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();
+        $comjobs = [];
         array_unshift($comjobs, ['text' => '全部岗位', 'value' => 0]);
         return view('emp/apply', [
             'comjobs'   => json_encode($comjobs),