| 12345678910111213141516171819202122232425262728 |
- @{
- ViewData["Title"] = "银联支付";
- }
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a asp-controller="Home" asp-action="Index">首页</a></li>
- <li class="breadcrumb-item active" aria-current="page">@ViewData["Title"]</li>
- </ol>
- </nav>
- <br />
- <table class="table table-dark">
- <thead>
- <tr>
- <th scope="col">#</th>
- <th scope="col">产品</th>
- <th scope="col">接口</th>
- <th scope="col">#</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">1</th>
- <td>网关支付-跳转网关页面支付</td>
- <td><a href="https://open.unionpay.com/ajweb/product/newProApiShow?proId=1&apiId=63" target="_blank">Form_6_2_FrontConsume</a></td>
- <td><a asp-controller="UnionPay" asp-action="FrontConsume62">立即测试</a></td>
- </tr>
- </tbody>
- </table>
|