68 lines
1.9 KiB
Plaintext
68 lines
1.9 KiB
Plaintext
@{
|
|
ViewBag.Title = "CustomerFutureLoadUC";
|
|
string typeId = Request.QueryString["id"];
|
|
string tradeCode = Request.QueryString["tradecode"];
|
|
}
|
|
<link href="~/Content/data_grid_list.css" rel="stylesheet" />
|
|
<link href="~/Content/main.css" rel="stylesheet" />
|
|
<style type="text/css">
|
|
.ShowDiv {
|
|
display: block;
|
|
}
|
|
|
|
.HiddenDiv {
|
|
display: none;
|
|
}
|
|
</style>
|
|
|
|
<div style="width: 100%;">
|
|
@*<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>*@
|
|
@switch(typeId)
|
|
{
|
|
case "1":
|
|
@Html.Action("CustomerCapitalCountDetailsUC","CustomerUC",tradeCode)
|
|
break;
|
|
case "2":
|
|
@Html.Action("CustomerTransactionDetailsUC", "CustomerUC", tradeCode)
|
|
break;
|
|
case "3":
|
|
@Html.Action("CustomerTranAmtDetailsUC", "CustomerUC", tradeCode)
|
|
break;
|
|
case "4":
|
|
@Html.Action("CustomerPositionsDetailsUC", "CustomerUC", tradeCode)
|
|
break;
|
|
}
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
$(window.parent.document).find("#loadC").load(function () {
|
|
var main = $(window.parent.document).find("#loadC");
|
|
var thisheight = $(document).height() + 30;
|
|
main.height(thisheight);
|
|
});
|
|
|
|
var code = window.parent.$("a.curshow").html();
|
|
$("#t2 tbody tr").hide();
|
|
$("#t2 tbody tr.table" + code).show();
|
|
|
|
$("#t3 tbody tr").hide();
|
|
$("#t3 tbody tr.table" + code).show();
|
|
|
|
$("#t4 tbody tr").hide();
|
|
$("#t4 tbody tr.table" + code).show();
|
|
|
|
$(".tradeCodeMore1").hide();
|
|
$("#More1_" + code).show();
|
|
$(".tradeCodeMore2").hide();
|
|
$("#More2_" + code).show();
|
|
|
|
$(".tradeCodeMore3").hide();
|
|
$("#More3_" + code).show();
|
|
$(".tradeCodeMore4").hide();
|
|
$("#More4_" + code).show();
|
|
|
|
});
|
|
</script>
|
|
|
|
|