29 lines
847 B
Plaintext
29 lines
847 B
Plaintext
@model NP.Model.VMMM
|
|
<div>
|
|
<ul class="pagination pagination-md" style="margin: 0;">
|
|
<li class="@(Model.tabidx == 0 ? "active" : "")"><a href="#" onclick="gotab(0);" data-toggle="tab">상품별</a></li>
|
|
<li class="@(Model.tabidx == 1 ? "active" : "")"><a href="#" onclick="gotab(1);" data-toggle="tab">과정별</a></li>
|
|
</ul>
|
|
</div>
|
|
@{Html.RenderPartial("sales" + Model.tabidx, Model);}
|
|
<form id="tabmainform" action="/data/sales" method="post">
|
|
@Html.HiddenFor(m => m.tabidx)
|
|
</form>
|
|
@section styles{
|
|
|
|
}
|
|
@section scriptsHeader{
|
|
|
|
}
|
|
@section scripts{
|
|
<script>
|
|
$(document).ready(function () {
|
|
|
|
});
|
|
function gotab(no) {
|
|
bglayer();
|
|
$("#tabmainform #tabidx").val(no);
|
|
$("#tabmainform").submit();
|
|
}
|
|
</script>
|
|
} |