| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | <?phpnamespace app\admin\controller;use app\admin\common\AdminController;use app\common\api\BatchApi;/** * Description of Batch * * @author sgq */class Batch extends AdminController {    /**     * @@auth {{/batch}}     * @return type     */    public function index() {        $declare_type_list = \app\common\api\DictApi::findChildDictByCode("declare_type");        return view("", ["declare_type_list" => $declare_type_list]);    }    /**     * @@auth {{/batch/list}}     * @return type     */    public function list() {        return json(BatchApi::getList($this->request));    }    /**     * @@auth {{/batch/add}}     * @return type     */    public function add() {        if ($this->request->isPost()) {            return json(BatchApi::create($this->request->param()));        }        return view();    }    /**     * @@auth {{/batch/update}}     * @return type     */    public function edit() {        if ($this->request->isPost()) {            return json(BatchApi::update($this->request->param()));        }        $batch = BatchApi::getOne($this->request->param("id"));        return view("", ["batch" => $batch]);    }    /**     * @@auth {{/batch/delete}}     * @return type     */    public function delete() {        if ($this->request->isPost()) {            return json(BatchApi::delete($this->request->param("batchId")));        }    }    /**     * @@auth {{/batch/setActive}}     * @return type     */    public function setActive() {        if ($this->request->isPost()) {            return json(BatchApi::setActive($this->request->param("batchId"), 1));        }    }    /**     * @@auth {{/batch/setNotActive}}     * @return type     */    public function setNotActive() {        if ($this->request->isPost()) {            return json(BatchApi::setActive($this->request->param("batchId"), 2));        }    }    /**     * @@auth {{/batch/detail}}     * @return type     */    public function detail() {        return view();    }}
 |