<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                合規國際互聯網加速 OSASE為企業客戶提供高速穩定SD-WAN國際加速解決方案。 廣告
                >獲取提現積分的類型,在后臺可以設置某種積分可被提現,此處獲取的數據為可提現積分的類型 ~~~[api] get:/index.php/accounts/Apipoint/member_withdrawal_list int:type= 0#是否智能限制提現積分類型,0:不智能,1:智能,如:提現設置了只能在每月25號提現,如果參數為1,該提現幣種只會在25號獲取的時候返回,其它時間獲取不返回該提現幣種 <<< success { "err": 0, "count": 2, "data": { "money": { "point_type": "money", "point_name": "資金", "point_unit": "元", "point_decimal": 2, "point_ico": "\/web\/public\/Upload\/admin\/1\/5e61fac478e9a.png", "balance": 10, "scale": 0.1, "freeze_type": "1", "freeze": 0, "withdraw_date": "0", "proceduresType": "0", "poundage": 0.4 }, "point": { "point_type": "point", "point_name": "積分", "point_unit": "分", "point_decimal": 1, "point_ico": "http:\/\/localhost\/web\/public\/Upload\/member\/0\/\/hf7z22c0931583477564857.png", "balance": 0, "scale": 0.5, "freeze_type": "1", "freeze": 0, "withdraw_date": "2", "day": { "0": "1", "4": "5", "5": "6", "6": "7" }, "proceduresType": "1", "poundage": 10 } } } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ | 字段 |詳情 | | --- | --- | | count | 可體現積分種類的個數 | | data| 提現積分的數據 | | |----point_type| 積分類型標識 | | |----point_name | 積分名稱 | | |----point_unit| 積分單位 | | |----point_ico| 積分圖標 | | |----point_decimal| 積分小數位數 | | |----scale| 提現比例,如0.1標識1積分提現0.1元 | | |----freeze_type| 限制提現賬戶 1:滿多少可提現 2:賬戶必須留多少可體現 | | |----freeze| 賬戶限制的額度,與freeze_type配合使用,滿【freeze】提現或者留【freeze】提現| | |----withdraw_date| 限制提現日期 0:不限 1:每周 2:每月 | | |----day| day為一個對象,非數組, 限制提現日期具體的時間, withdraw_date為0時無次參數,限制為每周時,該參數返回0-6的字符串,表示星期日到星期六,限制為每月時,該參數返回1-28的字符,標識1號到28號的某幾天 | | |----proceduresType| 提現手續費類型 0:固定數額 1:百分比 | | |----poundage| 手續費額度,與 proceduresType參數配合使用 | >申請提現操作 ~~~[api] get:/index.php/accounts/Apipoint/member_submit_withdrawal *string:point_type=money #需要提現積分標識 *int:point=0 #提現額度 int:type=2 #提現類型 1:提現到微信零錢,2:提現到銀行卡 string:way= #格式為:姓名|卡號|開戶行|銀行卡類型(工行)|手機號,如果選擇提現到銀行卡必須填此項 <<< success { "point_type": "money", "point_name": "資金", "point_unit": "元", "point": 1, "balance": 990.2, "point_ico": "\/web\/public\/Upload\/admin\/1\/5e61fac478e9a.png" } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ | 字段 |詳情 | | --- | --- | | point_type| 提現的積分標識 | | point_name| 提現的積分名稱 | | point_unit| 提現積分的單位 | | point | 提現積分數 | | balance| 提現后的余額 | | point_ico| 積分圖標 | >獲取登錄用戶的提現列表 ~~~[api] get:/index.php/accounts/Apipoint/member_get_withdrawal_list string:point_type=money #積分標識,不傳為全部 int:type=0 #提現類型 0:全部, 1:提現到微信零錢,2:提現到銀行卡 int:pagesize=10#每頁顯示個數 int:page=1#顯示頁碼數 string:between_point= #提現區間 如100-200 string:sort= id #排序字段 string:sort_type= asc#排序類型 int:status= 0#狀態,不填表示全部,0:未確認,1:打款中,2:已打款,3:拒絕打款 <<< success { "err": 0, "page": 1, "pageSize": 10, "count": 1, "pageTotal": 1, "data": [{ "point_type": "point", "point_name": "積分", "point_unit": "分", "point_ico": "http:\/\/localhost\/web\/public\/Upload\/member\/0\/\/hf7z22c0931583477564857.png", "point": "1", "type": "提現到銀行卡", "status": "拒絕打款", "msg": "", "addtime": "2020-03-08 19:26:30" }] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ | 字段 |詳情 | | --- | --- | | point_type| 提現的積分標識 | | point_name| 提現的積分名稱 | | point_unit| 提現積分的單位 | | point | 提現積分數 | | point_ico| 積分圖標 | | type| 提現方式 | | status| 提現狀態 | | msg| 拒絕理由 | | addtime| 提現時間 |
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看