Is_Login(); } /** * [Index 首页] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-02-25T15:30:36+0800 */ public function Pay() { $params = $_REQUEST; $params['user'] = $this->user; $ret = OrderService::Pay($params); if($ret['code'] == 0) { redirect($ret['data']); } else { $this->assign('msg', $ret['msg']); $this->display('/Public/TipsError'); } } } ?>