1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @using WMS.BZWeb;
- @{
- ViewBag.Title = "出入站台管理";
- Layout = "~/Views/Shared/_Index.cshtml";
- }
- <style>
- .lr-scroll-horizontal {
- height: 12px;
- display: block;
- z-index: 100;
- }
- .lr-scroll-vertical {
- width: 12px;
- display: block;
- z-index: 100;
- }
- .jfgrid-sub .jfgrid-body {
- overflow-y: scroll
- }
- </style>
- <div class="lr-layout">
- <div class="lr-layout-center">
- <div class="lr-layout-wrap lr-layout-wrap-notitle">
- <div class="lr-layout-tool">
- <div class="lr-layout-tool-left">
- <div class="lr-layout-tool-item">
- <input id="txt_Keyword" type="text" class="form-control" placeholder="请输入站台" />
- </div>
- <div class="lr-layout-tool-item">
- <a id="btn_Search" class="btn btn-primary btn-sm"><i class="fa fa-search"></i> <span class="lrlg">查询</span></a>
- </div>
-
- <div class="lr-layout-tool-item">
- <span class="tabName" style="margin-top: 0px"><i class="fa fa-th"></i> 出入站台管理</span>
- @* <div id="multiple_condition_query">
- <div class="lr-query-formcontent">
- <div class="col-xs-4 lr-form-item">
- <div class="lr-form-item-title">站台</div>
- <input id="Pation" type="text" class="form-control" placeholder="请输入站台" />
- </div>
- </div>
- </div> *@
- </div>
- </div>
- <div class="lr-layout-tool-right">
- <div class=" btn-group btn-group-sm">
- <a id="lr_refresh" class="btn btn-default"><i class="fa fa-refresh"></i> <span class="lrlg">刷新</span></a>
- </div>
- <div class=" btn-group btn-group-sm" wms-authorize="yes">
- <a id="lr_write" class="btn btn-default"><i class="fa fa-pencil-square-o "></i> 写信号</a>
- <a id="lr_clear" class="btn btn-default"><i class="fa fa-trash-o"></i> 清信号</a>
- </div>
- </div>
- </div>
- <div class="lr-layout-body" id="gridtable"></div>
- </div>
- </div>
- </div>
- <script>
- var WCSWebUrl = '@ViewBag.PTWCSWebAPIUrl';
- </script>
- @Html.AppendJsFile("/Areas/PTManager/Views/SysCon/OutInPationIndex.js")
|