service = new EnshrineService(); } /** * 供奉记录 * @return array */ public function index(){ return $this->service->getDataList($this->userId); } /** * 选择佛像 * @return mixed */ public function select(){ return $this->service->select($this->userId); } /** * 送圣 * @return array */ public function packoff(){ return $this->service->packoff($this->userId); } }