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