@{
Layout = null;
}
@Html.C1().Styles()
@Html.C1().Scripts().Basic()
@*<script src="~/Content/Scripts/jquery/jquery-1.8.2.js"></script>*@
@*<link rel="stylesheet" href="~/Content/styles/cetione.css" type="text/css" />
<link href="/Content/jquery-easyui-1.5/themes/gray/easyui.css" rel="stylesheet" />
<link href="~/Content/jquery-easyui-1.5/themes/icon.css" rel="stylesheet" />
<link href="~/Content/Styles/easyui-rtl.css" rel="stylesheet" />
<script src="~/Content/Scripts/framework.js"></script>
<script src="~/Content/Scripts/easyui-extend.js"></script>
<script src="/Content/Scripts/jquery/jquery-ui.js"></script>
<script src="/Content/jquery-easyui-1.5/jquery.easyui.js"></script>
<script src="/Content/jquery-easyui-1.5/locale/easyui-lang-zh_CN.js"></script>*@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
@Styles.Render("~/Content/basedatamanage")
@Scripts.Render("~/bundles/basedatamanage")
@RenderSection("Header", false)
<link href="~/Content/C1/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" href="~/Content/styles/cetione.css" type="text/css" />
<link href="/Content/jquery-easyui-1.5/themes/gray/easyui.css" rel="stylesheet" />
<link href="~/Content/jquery-easyui-1.5/themes/icon.css" rel="stylesheet" />
<link href="~/Content/Styles/easyui-rtl.css" rel="stylesheet" />
<script src="~/Content/Scripts/framework.js"></script>
<script src="~/Content/Scripts/easyui-extend.js"></script>
<script src="/Content/Scripts/jquery/jquery-ui.js"></script>
<script src="/Content/jquery-easyui-1.5/jquery.easyui.js"></script>
<script src="/Content/jquery-easyui-1.5/locale/easyui-lang-zh_CN.js"></script>
<script src="~/Content/C1/js/jszip.min.js"></script>
<script src="~/Content/C1/js/C1Cetione.js"></script>
<style type="text/css">
/*body*/
body {
font-family: 'Microsoft YaHei';
font-size: 14px;
color: #333;
background-color: #F5F7F9;
height: 100%;
width: 100%;
padding: 0 10px !important;
box-sizing: border-box;
}
/*创建勾选的弹窗列*/
.column-picker {
columns: 8;
padding: 12px;
margin-left: 12px;
margin-top: 26px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.column-picker-icon {
cursor: pointer;
color: #FF8754;
margin: 3px;
}
#theGrid.wj-flexgrid .wj-cell {
padding: 8px;
}
</style>
</head>
<body>
<div id="QueryArea">
@RenderSection("QueryCondition", false)
</div>
<div id="toolbar">
@RenderSection("ButtonArea", false)
</div>
<div id="edited" class="changed edited"></div>
<div id="gridbar" data-options="fit:true,border:false" style="width:100%;min-width:300px;">
<div id="theGroupPanel" style="height:65px;width:100%;"></div>@*分组面板*@
@(Html.C1().FlexGrid().Id("theGrid")
.Filterable(fb => fb.DefaultFilterType(FilterType.Both))//查询
//.AllowSorting(true)
//.ShowSort(true)
//.IsReadOnly(true)//只读
//.AutoGenerateColumns(false)//自动生成列
//.Height(500)//高
//.KeyActionTab(C1.Web.Mvc.Grid.KeyAction.Cycle)//Tab切换
//.AllowAddNew(true)
//.AllowDelete(true)
//.SelectionMode(C1.Web.Mvc.Grid.SelectionMode.None)
.AllowAddNew(true)
.AllowDelete(true)
//.Height(500)
)
<div style="display:none">
@Html.C1().ListBox().Id("theColumnPicker").CssClass("column-picker")
</div>
<div id="pager">
<button id="btnFirst" class="btn"><span class="wj-glyph-step-backward"></span></button>
<button id="btnPrev" class="btn"><span class="wj-glyph-left"></span></button>
<span id="spanCurrent"></span>
<button id="btnNext" class="btn"><span class="wj-glyph-right"></span></button>
<button id="btnLast" class="btn"><span class="wj-glyph-step-forward"></span></button>
<label id="TotalAmountShow" hidden="hidden" style="margin-left:950px;font-size:24px;">汇总金额:<span id="TotalAmount"></span></label>
<div id="thePageRows" style="width:100px;height:35px;"></div>
</div>
</div>
@RenderSection("Other", false)
</body>
</html>
|