title = '商品分类管理'; return $this->_query($this->table)->like('title')->equal('status')->order('sort asc,id desc')->page(); } /** * 添加商品分类信息 * @return mixed */ public function add() { $this->title = '添加商品分类'; return $this->_form($this->table, 'form'); } /** * 编辑商品分类信息 * @return mixed */ public function edit() { $this->title = '编辑商品分类'; return $this->_form($this->table, 'form'); } /** * 商品分类禁用 */ public function forbid() { $this->_save($this->table, ['status' => '0']); } /** * 商品分类禁用 */ public function resume() { $this->_save($this->table, ['status' => '1']); } /** * 删除商品分类 */ public function del() { $this->_delete($this->table); } }