Index.cshtml 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. @{
  2. ViewData["Title"] = "QQ钱包";
  3. }
  4. <nav aria-label="breadcrumb">
  5. <ol class="breadcrumb">
  6. <li class="breadcrumb-item"><a asp-controller="Home" asp-action="Index">首页</a></li>
  7. <li class="breadcrumb-item active" aria-current="page">@ViewData["Title"]</li>
  8. </ol>
  9. </nav>
  10. <br />
  11. <table class="table table-bordered table-hover">
  12. <thead>
  13. <tr>
  14. <th scope="col">#</th>
  15. <th scope="col">产品</th>
  16. <th scope="col">接口</th>
  17. <th scope="col">#</th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. <tr>
  22. <th scope="row">1</th>
  23. <td>付款码支付-提交付款码支付</td>
  24. <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>
  25. <td><a asp-controller="QPay" asp-action="MicroPay">立即测试</a></td>
  26. </tr>
  27. <tr>
  28. <th scope="row">2</th>
  29. <td>扫码支付-统一下单</td>
  30. <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>
  31. <td><a asp-controller="QPay" asp-action="QrCodePay">立即测试</a></td>
  32. </tr>
  33. <tr>
  34. <th scope="row">3</th>
  35. <td>公众号支付-统一下单</td>
  36. <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>
  37. <td><a asp-controller="QPay" asp-action="PubPay">立即测试</a></td>
  38. </tr>
  39. <tr>
  40. <th scope="row">4</th>
  41. <td>APP支付-统一下单</td>
  42. <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>
  43. <td><a asp-controller="QPay" asp-action="AppPay">立即测试</a></td>
  44. </tr>
  45. <tr>
  46. <th scope="row">5</th>
  47. <td>订单查询</td>
  48. <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>
  49. <td><a asp-controller="QPay" asp-action="OrderQuery">立即测试</a></td>
  50. </tr>
  51. <tr>
  52. <th scope="row">6</th>
  53. <td>撤销订单</td>
  54. <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>
  55. <td><a asp-controller="QPay" asp-action="Reverse">立即测试</a></td>
  56. </tr>
  57. <tr>
  58. <th scope="row">7</th>
  59. <td>关闭订单</td>
  60. <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>
  61. <td><a asp-controller="QPay" asp-action="CloseOrder">立即测试</a></td>
  62. </tr>
  63. <tr>
  64. <th scope="row">8</th>
  65. <td>申请退款</td>
  66. <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>
  67. <td><a asp-controller="QPay" asp-action="Refund">立即测试</a></td>
  68. </tr>
  69. <tr>
  70. <th scope="row">9</th>
  71. <td>退款查询</td>
  72. <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>
  73. <td><a asp-controller="QPay" asp-action="RefundQuery">立即测试</a></td>
  74. </tr>
  75. <tr>
  76. <th scope="row">10</th>
  77. <td>对账单下载</td>
  78. <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>
  79. <td><a asp-controller="QPay" asp-action="StatementDown">立即测试</a></td>
  80. </tr>
  81. </tbody>
  82. </table>