// +---------------------------------------------------------------------- namespace app\api\controller; use think\facade\Request; use app\api\service\Payment as PaymentService; class Payment extends Base { /** * 支付列表 * @return \think\response\Json */ public function index(){ try { return $this->returnAjax("ok",1,PaymentService::getList(Request::param())); }catch (\Exception $ex){ return $this->returnAjax($ex->getMessage(),$ex->getCode()); } } }