Index.cshtml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @{
  2. ViewData["Title"] = "前言";
  3. }
  4. <p>
  5. Payment 基于 .NET Core / ASP.NET Core 开发,支持多商户的跨平台支付SDK集。 简化了API调用及相关通知的处理流程。
  6. </p>
  7. <p class="text-danger">
  8. 注: 本Sample仅作为测试用途,基本涵盖了常用的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. </tbody>
  43. </table>