🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
**简要描述:** - 获取提现页面数据 **请求URL:** - `/shopapi/shop/getWithdrawInfo` **请求方式:** - GET **参数:** |参数名 |必选 |类型 |说明 | |:----- |:----- | :----- |:----- | | is_run|否| int|营业状态:0=暂停营业, 1=营业中| | nickname| 否|string| 商家联系人| | mobile| 否|string| 商家联系人电话| | intro|否| string| 简介| | run_start_time| 否|string| 每天营业开始时间(传时间戳比如2021-11-11 9:00设置的就传该点的时间戳)| | run_end_time| 否|string| 每天营业结束时间(传时间戳比如2021-11-11 9:00设置的就传该点的时间戳)| | weekdays| 否|array| 工作日(传数组[0,1,2,3,4,5,6])0表示:星期天| | refund_address| 否|array| 退货信息| | --nickname| 否|string| 联系人| | --mobile| 否|string| 联系电话| | --province_id| 否|int| 省份id| | --city_id| 否|int|城市id| | --district_id| 否|int| 区id| | --address| 否|string| 详情地址| **返回示例** ``` { "code": 1, "show": 0, "msg": "", "data": { "wallet": "200.00", "min_withdrawal_money": 10, "max_withdrawal_money": 200, "withdrawal_service_charge": 0.1, "bank_list": [ { "id": 2, "name": "工商银行", "branch": "广州支行", "nickname": "李四" } ] } } ``` **返回参数** |参数名 |类型 |说明 | |:----- |:----- | :----- |:----- |