Index.cshtml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @{
  2. ViewData["Title"] = "京东支付";
  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>在线支付接口PC版</td>
  24. <td><a href="https://payapi.jd.com/interface/saveOrder.html" target="_blank">https://wepay.jd.com/jdpay/saveOrder</a></td>
  25. <td><a asp-controller="JDPay" asp-action="SaveOrderPC">立即测试</a></td>
  26. </tr>
  27. <tr>
  28. <th scope="row">2</th>
  29. <td>在线支付接口H5版</td>
  30. <td><a href="https://payapi.jd.com/interface/saveOrder.html" target="_blank">https://h5pay.jd.com/jdpay/saveOrder</a></td>
  31. <td><a asp-controller="JDPay" asp-action="SaveOrderH5">立即测试</a></td>
  32. </tr>
  33. <tr>
  34. <th scope="row">3</th>
  35. <td>扫码支付-统一下单</td>
  36. <td><a href="https://payapi.jd.com/interface/uniorder.html" target="_blank">https://paygate.jd.com/service/uniorder</a></td>
  37. <td><a asp-controller="JDPay" asp-action="QrCodePay">立即测试</a></td>
  38. </tr>
  39. <tr>
  40. <th scope="row">4</th>
  41. <td>交易查询</td>
  42. <td><a href="https://payapi.jd.com/interface/query.html" target="_blank">https://paygate.jd.com/service/query</a></td>
  43. <td><a asp-controller="JDPay" asp-action="Query">立即测试</a></td>
  44. </tr>
  45. <tr>
  46. <th scope="row">5</th>
  47. <td>退款申请</td>
  48. <td><a href="https://payapi.jd.com/interface/refund.html" target="_blank">https://paygate.jd.com/service/refund</a></td>
  49. <td><a asp-controller="JDPay" asp-action="Refund">立即测试</a></td>
  50. </tr>
  51. <tr>
  52. <th scope="row">6</th>
  53. <td>退款查询</td>
  54. <td><a href="https://payapi.jd.com/interface/queryRefund.html" target="_blank">https://paygate.jd.com/service/queryRefund</a></td>
  55. <td><a asp-controller="JDPay" asp-action="QueryRefund">立即测试</a></td>
  56. </tr>
  57. <tr>
  58. <th scope="row">7</th>
  59. <td>代付交易</td>
  60. <td>https://mapi.jdpay.com/npp10/defray_pay</td>
  61. <td><a asp-controller="JDPay" asp-action="DefrayPay">立即测试</a></td>
  62. </tr>
  63. <tr>
  64. <th scope="row">8</th>
  65. <td>代付交易查询</td>
  66. <td>https://mapi.jdpay.com/npp10/trade_query</td>
  67. <td><a asp-controller="JDPay" asp-action="TradeQuery">立即测试</a></td>
  68. </tr>
  69. </tbody>
  70. </table>