dataLists(new SystemStoreLists()); } public function detail() { $store_id = (int)$this->request->get('store_id'); $where = [ 'id' => $store_id ]; $info = StoreLogic::search($where); if ($info) { return $this->data($info); } else { return $this->fail('店铺不存在'); } } }