🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 发起转账 +++ get:http://*/index.php?ctl=Api_User_TransferMoney&met=transferMoney&typ=json *transfer_money_str=默认值#json字符串经过加密编码后的字符串 <<< success { "status": "200", "data": { } } +++ APP开发使用 transfer_money_str = [ from_user=>发起转帐或红包的人(必填), to_user=>接收人(必填), money=>转了多少钱(必填), type=> 1红包 2 转帐(必填), txt=>注释 ] json_encode(transfer_money_str) ### 接受转账 +++ get:http://*/index.php?ctl=Api_User_TransferMoney&met=acceptTransfer&typ=json *transfer_money_str=默认值#json字符串经过加密编码后的字符串 <<< success { "status": "200", "data": { } } +++ APP开发使用: transfer_money_str = [ transfer_money_id=>红包id(必填) ] json_encode(transfer_money_str ) ### 获取转账状态 +++ get:http://*/index.php?ctl=Api_User_TransferMoney&met=getTransferMoneyStatus&typ=json *transfer_money_str=默认值#json字符串经过加密编码后的字符串 <<< success { "status": "200", "data": { } } +++ APP开发使用 transfer_money_str = [ transfer_money_id=>红包id(必填) ] json_encode(transfer_money_str )