说明 / 示例
## 获取支付方式
### 请求参数
| 参数名称 | 默认值 | 说明 |
| -------- | ----------- | ---------------------- |
| _handle | StarshinePage | |
| _method | GetPayType | |
| type | | // 0 PC 1 Mobile 2 wechat 3 all 电脑传0 手机 传1 |
### 请求响应
``` json
{
"code": 1,
"msg": "",
"data": [{
"method_name":"支付宝",
"method_code":"alipay"
},{
"method_name":"微信",
"method_code":"wechat"
},{
"method_name":"平台币",
"method_code":"currency" //判断是currency支付方式的 显示金额的时候乘10
}
]
}
```