| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- @model economy.Models.View<economy.Models.Financial.International.Request, economy.Models.Financial.International.Response>
- @{
- ViewData["Title"] = "국제 금리";
- }
- <div class="container">
- <h3>국제 금리</h3>
- @await Html.PartialAsync("NavTab")
- <div class="row mt-3 mb-3">
- <div class="col-auto">
- <input type="date" name="date" id="date" class="form-control" value="@Model.Request.DateFormatted" form="fSearch" />
- </div>
- </div>
- <p>
- 한국수출입은행이 제공하는 국제 금리 정보입니다.
- 각 대출기간에 대한 고정기준금리를 일 기준으로 제공합니다.
- </p>
- <div id="financialInternational" class="row row-cols-sm-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-4">
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.SofrList != null && Model.Response?.SofrList.Count() > 0)
- {
- @foreach (var row in Model.Response.SofrList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.EstrList != null && Model.Response?.EstrList.Count() > 0)
- {
- @foreach (var row in Model.Response.EstrList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.EuriborList != null && Model.Response?.EuriborList.Count() > 0)
- {
- @foreach (var row in Model.Response.EuriborList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.TonaList != null && Model.Response?.TonaList.Count() > 0)
- {
- @foreach (var row in Model.Response.TonaList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.TiborList != null && Model.Response?.TiborList.Count() > 0)
- {
- @foreach (var row in Model.Response.TiborList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.SwapRfrList != null && Model.Response?.SwapRfrList.Count() > 0)
- {
- @foreach (var row in Model.Response.SwapRfrList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.LiborList != null && Model.Response?.LiborList.Count() > 0)
- {
- @foreach (var row in Model.Response.LiborList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.SwapList != null && Model.Response?.SwapList.Count() > 0)
- {
- @foreach (var row in Model.Response.SwapList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- <div class="col">
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th>통화</th>
- <th>기준</th>
- <th>금리</th>
- </tr>
- </thead>
- <tbody>
- @if (Model.Response?.CirrList != null && Model.Response?.CirrList.Count() > 0)
- {
- @foreach (var row in Model.Response.CirrList)
- {
- <tr>
- <td>@row.CurFund</td>
- <td>@row.InterestName</td>
- <td>@row.InterestRate</td>
- </tr>
- }
- }
- else
- {
- <tr>
- <td colspan="3">
- No data.
- </td>
- </tr>
- }
- </tbody>
- </table>
- </div>
- </div>
-
- <form id="fSearch" method="get" accept-charset="UTF-8" rel="search" autocomplete="off" asp-controller="Financial" asp-action="International"></form>
- </div>
- @section Scripts {
- <script src="~/js/financial.js" asp-append-version="true"></script>
- }
- @section Styles {
- <link href="~/css/style.css" rel="stylesheet" asp-append-version="true" />
- }
|