Index.cshtml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>当面付-扫码支付</td>
  24. <td><a href="https://docs.open.alipay.com/api_1/alipay.trade.precreate" target="_blank">alipay.trade.precreate</a></td>
  25. <td><a asp-controller="Alipay" asp-action="PreCreate">立即测试</a></td>
  26. </tr>
  27. <tr>
  28. <th scope="row">2</th>
  29. <td>当面付-二维码/条码/声波支付</td>
  30. <td><a href="https://docs.open.alipay.com/api_1/alipay.trade.pay" target="_blank">alipay.trade.pay</a></td>
  31. <td><a asp-controller="Alipay" asp-action="Pay">立即测试</a></td>
  32. </tr>
  33. <tr>
  34. <th scope="row">3</th>
  35. <td>App支付</td>
  36. <td><a href="https://docs.open.alipay.com/api_1/alipay.trade.app.pay" target="_blank">alipay.trade.app.pay</a></td>
  37. <td><a asp-controller="Alipay" asp-action="AppPay">立即测试</a></td>
  38. </tr>
  39. <tr>
  40. <th scope="row">4</th>
  41. <td>手机网站支付</td>
  42. <td><a href="https://docs.open.alipay.com/api_1/alipay.trade.wap.pay" target="_blank">alipay.trade.wap.pay</a></td>
  43. <td><a asp-controller="Alipay" asp-action="WapPay">立即测试</a></td>
  44. </tr>
  45. <tr>
  46. <th scope="row">5</th>
  47. <td>电脑网站支付</td>
  48. <td><a href="https://docs.open.alipay.com/270/alipay.trade.page.pay" target="_blank">alipay.trade.page.pay</a></td>
  49. <td><a asp-controller="Alipay" asp-action="PagePay">立即测试</a></td>
  50. </tr>
  51. <tr>
  52. <th scope="row">6</th>
  53. <td>交易查询</td>
  54. <td><a href="https://docs.open.alipay.com/api_1/alipay.trade.query" target="_blank">alipay.trade.query</a></td>
  55. <td><a asp-controller="Alipay" asp-action="Query">立即测试</a></td>
  56. </tr>
  57. <tr>
  58. <th scope="row">7</th>
  59. <td>交易退款</td>
  60. <td><a href="https://docs.open.alipay.com/api_1/alipay.trade.refund" target="_blank">alipay.trade.refund</a></td>
  61. <td><a asp-controller="Alipay" asp-action="Refund">立即测试</a></td>
  62. </tr>
  63. <tr>
  64. <th scope="row">8</th>
  65. <td>退款查询</td>
  66. <td><a href="https://docs.open.alipay.com/api_1/alipay.trade.fastpay.refund.query" target="_blank">alipay.trade.fastpay.refund.query</a></td>
  67. <td><a asp-controller="Alipay" asp-action="RefundQuery">立即测试</a></td>
  68. </tr>
  69. <tr>
  70. <th scope="row">9</th>
  71. <td>交易关闭</td>
  72. <td><a href="https://docs.open.alipay.com/api_1/alipay.trade.close" target="_blank">alipay.trade.close</a></td>
  73. <td><a asp-controller="Alipay" asp-action="Close">立即测试</a></td>
  74. </tr>
  75. <tr>
  76. <th scope="row">10</th>
  77. <td>统一转账</td>
  78. <td><a href="https://docs.open.alipay.com/api_28/alipay.fund.trans.uni.transfer" target="_blank">alipay.fund.trans.uni.transfer</a></td>
  79. <td><a asp-controller="Alipay" asp-action="Transfer">立即测试</a></td>
  80. </tr>
  81. <tr>
  82. <th scope="row">11</th>
  83. <td>查询统一转账订单</td>
  84. <td><a href="https://docs.open.alipay.com/api_28/alipay.fund.trans.common.query" target="_blank">alipay.fund.trans.common.query</a></td>
  85. <td><a asp-controller="Alipay" asp-action="TransQuery">立即测试</a></td>
  86. </tr>
  87. <tr>
  88. <th scope="row">12</th>
  89. <td>余额查询</td>
  90. <td><a href="https://docs.open.alipay.com/api_28/alipay.fund.account.query" target="_blank">alipay.fund.account.query</a></td>
  91. <td><a asp-controller="Alipay" asp-action="AccountQuery">立即测试</a></td>
  92. </tr>
  93. </table>