Index.cshtml 4.2 KB

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