| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- @{
- ViewData["Title"] = "QQ钱包";
- }
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a asp-controller="Home" asp-action="Index">首页</a></li>
- <li class="breadcrumb-item active" aria-current="page">@ViewData["Title"]</li>
- </ol>
- </nav>
- <br />
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th scope="col">#</th>
- <th scope="col">产品</th>
- <th scope="col">接口</th>
- <th scope="col">#</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">1</th>
- <td>付款码支付-提交付款码支付</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=1&docid=185" target="_blank">https://qpay.qq.com/cgi-bin/pay/qpay_micro_pay.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="MicroPay">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">2</th>
- <td>扫码支付-统一下单</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=58" target="_blank">https://qpay.qq.com/cgi-bin/pay/qpay_unified_order.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="QrCodePay">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">3</th>
- <td>公众号支付-统一下单</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=58" target="_blank">https://qpay.qq.com/cgi-bin/pay/qpay_unified_order.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="PubPay">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">4</th>
- <td>APP支付-统一下单</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=58" target="_blank">https://qpay.qq.com/cgi-bin/pay/qpay_unified_order.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="AppPay">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">5</th>
- <td>订单查询</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=1&docid=5" target="_blank">https://qpay.qq.com/cgi-bin/pay/qpay_order_query.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="OrderQuery">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">6</th>
- <td>撤销订单</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=1&docid=168" target="_blank">https://api.qpay.qq.com/cgi-bin/pay/qpay_reverse.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="Reverse">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">7</th>
- <td>关闭订单</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=61" target="_blank">https://qpay.qq.com/cgi-bin/pay/qpay_close_order.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="CloseOrder">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">8</th>
- <td>申请退款</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=62" target="_blank">https://api.qpay.qq.com/cgi-bin/pay/qpay_refund.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="Refund">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">9</th>
- <td>退款查询</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=63" target="_blank">https://qpay.qq.com/cgi-bin/pay/qpay_refund_query.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="RefundQuery">立即测试</a></td>
- </tr>
- <tr>
- <th scope="row">10</th>
- <td>对账单下载</td>
- <td><a href="https://qpay.qq.com/qpaywiki/showdocument.php?pid=38&docid=64" target="_blank">https://qpay.qq.com/cgi-bin/sp_download/qpay_mch_statement_down.cgi</a></td>
- <td><a asp-controller="QPay" asp-action="StatementDown">立即测试</a></td>
- </tr>
- </tbody>
- </table>
|