ProcessRouteStation.cshtml
1.07 KB
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section header
{
}
<div class="layui-row">
<div class="layui-col-xs3">
<ul id="tree" class="ztree" style="padding: 2px; border: 1px solid #ddd; overflow: auto;"></ul>
</div>
<div class="layui-col-xs9">
<table class="layui-table"
lay-data="{height: 'full-60', page:false, id:'mainList'}"
lay-filter="list" lay-size="sm">
<thead>
<tr>
<th lay-data="{checkbox:true, fixed: true}"></th>
<th lay-data="{field:'LineCode', width:90}">产线代码</th>
<th lay-data="{field:'Id', width:80}">工位标识</th>
<th lay-data="{field:'Name', width:150}">工位名称</th>
<th lay-data="{field:'StationType', width:120}">工位类型</th>
</tr>
</thead>
</table>
</div>
</div>
@section Scripts
{
<script type="text/javascript" src="/productjs/configure/StepAssignStation.js" asp-append-version="true"></script>
}