Index.cshtml 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @{
  2. ViewData["Title"] = "前言";
  3. }
  4. <h5>@ViewData["Title"]</h5>
  5. <p>
  6. Payment 是基于 .NET Core 2.0 / ASP NET Core 开发的支付SDK集。
  7. </p>
  8. <h5>注意</h5>
  9. <p>
  10. 本Demo仅作为测试用途,基本涵盖了常用的API。用作实际业务时,请务必配合相关API说明及文档处理。
  11. </p>
  12. <br />
  13. <h5>NuGet 程序包:</h5>
  14. <table class="table table-dark">
  15. <thead>
  16. <tr>
  17. <th scope="col">#</th>
  18. <th scope="col">Name</th>
  19. <th scope="col">Package</th>
  20. <th scope="col">NuGet</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <tr>
  25. <th scope="row">1</th>
  26. <td><a asp-controller="Alipay" asp-action="Index">支付宝</a></td>
  27. <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.Alipay" target="_blank">Essensoft.AspNetCore.Payment.Alipay</a></td>
  28. <td>
  29. <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.Alipay" target="_blank">
  30. <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.Alipay.svg?style=flat-square" />
  31. </a>
  32. </td>
  33. </tr>
  34. <tr>
  35. <th scope="row">2</th>
  36. <td><a asp-controller="WeChatPay" asp-action="Index">微信支付</a></td>
  37. <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.WeChatPay" target="_blank">Essensoft.AspNetCore.Payment.WeChatPay</a></td>
  38. <td>
  39. <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.WeChatPay" target="_blank">
  40. <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.WeChatPay.svg?style=flat-square" />
  41. </a>
  42. </td>
  43. </tr>
  44. <tr>
  45. <th scope="row">3</th>
  46. <td><a asp-controller="QPay" asp-action="Index">QQ钱包</a></td>
  47. <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.QPay" target="_blank">Essensoft.AspNetCore.Payment.QPay</a></td>
  48. <td>
  49. <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.QPay" target="_blank">
  50. <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.QPay.svg?style=flat-square" />
  51. </a>
  52. </td>
  53. </tr>
  54. <tr>
  55. <th scope="row">4</th>
  56. <td><a asp-controller="JDPay" asp-action="Index">京东支付</a></td>
  57. <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.JDPay" target="_blank">Essensoft.AspNetCore.Payment.JDPay</a></td>
  58. <td>
  59. <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.JDPay" target="_blank">
  60. <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.JDPay.svg?style=flat-square" />
  61. </a>
  62. </td>
  63. </tr>
  64. <tr>
  65. <th scope="row">5</th>
  66. <td><a asp-controller="LianLianPay" asp-action="Index">连连支付</a></td>
  67. <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.LianLianPay" target="_blank">Essensoft.AspNetCore.Payment.LianLianPay</a></td>
  68. <td>
  69. <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.LianLianPay" target="_blank">
  70. <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.LianLianPay.svg?style=flat-square" />
  71. </a>
  72. </td>
  73. </tr>
  74. <tr>
  75. <th scope="row">6</th>
  76. <td><a asp-controller="UnionPay" asp-action="Index">银联支付</a></td>
  77. <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.UnionPay" target="_blank">Essensoft.AspNetCore.Payment.UnionPay</a></td>
  78. <td>
  79. <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.UnionPay" target="_blank">
  80. <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.UnionPay.svg?style=flat-square" />
  81. </a>
  82. </td>
  83. </tr>
  84. </tbody>
  85. </table>