Index.cshtml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>Web快捷支付</td>
  24. <td><a href="http://open.lianlianpay.com/#cat=35" target="_blank">https://payment.lianlianpay.com/payment/bankgateway.htm</a></td>
  25. <td><a asp-controller="LianLianPay" asp-action="WebQuickPay">立即测试</a></td>
  26. </tr>
  27. <tr>
  28. <th scope="row">2</th>
  29. <td>H5快捷支付</td>
  30. <td><a href="http://open.lianlianpay.com/#cat=36" target="_blank">https://wap.lianlianpay.com/payment.htm</a></td>
  31. <td><a asp-controller="LianLianPay" asp-action="H5QuickPay">立即测试</a></td>
  32. </tr>
  33. <tr>
  34. <th scope="row">3</th>
  35. <td>订单查询</td>
  36. <td><a href="http://open.lianlianpay.com/#cat=36" target="_blank">https://queryapi.lianlianpay.com/orderquery.htm</a></td>
  37. <td><a asp-controller="LianLianPay" asp-action="OrderQuery">立即测试</a></td>
  38. </tr>
  39. <tr>
  40. <th scope="row">4</th>
  41. <td>退款</td>
  42. <td><a href="http://open.lianlianpay.com/#cat=74" target="_blank">https://traderapi.lianlianpay.com/refund.htm</a></td>
  43. <td><a asp-controller="LianLianPay" asp-action="Refund">立即测试</a></td>
  44. </tr>
  45. <tr>
  46. <th scope="row">5</th>
  47. <td>退款查询</td>
  48. <td><a href="http://open.lianlianpay.com/#cat=74" target="_blank">https://queryapi.lianlianpay.com/refundquery.htm</a></td>
  49. <td><a asp-controller="LianLianPay" asp-action="RefundQuery">立即测试</a></td>
  50. </tr>
  51. </tbody>
  52. </table>