贵宾充值 - 获取支付方式

## 获取支付方式 ## 请求地址 ``` URL 推广站/api/index/ ``` ### 请求参数 | 参数名称 | 默认值 | 说明 |是否必填| | -------- | ----------- | ---------------------- |-- | _handle | PaymentPage | |是 | _method | GetPayType | |是 | type | | // 0 PC 1 Mobile 2 wechat 3 all 可以传空返回全部 根据method_brower自行判断 |否 ### 请求响应 ``` json { "code": 1, "msg": "", "data": [ { "method_name": "支付宝手机版", "method_code": "alipay_wap", "method_brower": 1 }, { "method_name": "微信电脑版", "method_code": "wechat", "method_brower": 0 }, { "method_name": "支付宝电脑版", "method_code": "alipay", "method_brower": 0 }, { "method_name": "微信手机版", "method_code": "wechat_wap", "method_brower": 1 } ] } ```