1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\enterprise\controller;
- use app\enterprise\common\EnterpriseController;
- use app\enterprise\api\TalentApi;
- use app\common\api\DictApi;
- use app\common\api\VerifyApi;
- /**
- * Description of TalentWorkUnitChange
- *
- * @author sgq
- */
- class TalentWorkUnitChange extends EnterpriseController {
- public function index() {
- return view("", ["type" => $this->user["type"]]);
- }
- public function list() {
- $type = $this->user["type"];
- $param = $this->request->param();
- $order = trim($param["order"]) ?: "desc";
- $offset = trim($param["offset"]) ?: 0;
- $limit = trim($param["limit"]) ?: 10;
- $where[] = ["enterprise_id", "=", session("user")["uid"]];
- }
- public function apply() {
- return view();
- }
- public function view() {
- return view();
- }
- }
|