You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
637 B
16 lines
637 B
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<QMAPP.FJC.Web.Models.ParameterQuery.ParameterQueryModel>" %>
|
|
<th data-options="field:'PRODUCTCODE',width:150">
|
|
零件条码
|
|
</th>
|
|
<th data-options="field:'CREATEDATE',width:120">
|
|
加工日期
|
|
</th>
|
|
<th data-options="field:'MOLDNUMBER',width:100">
|
|
模架
|
|
</th>
|
|
<%foreach (var column in Model.ParamColumns.OrderBy(p => p.SHOWINDEX))
|
|
{%>
|
|
<th data-options="field:'<%=column.PARANAME %>',width:<%=column.WIDTH>0?column.WIDTH:100 %>,align:'<%=new string[]{"left","right","center"}[int.Parse(column.ALIGNVALUE)] %>'">
|
|
<%=column.PARADESCRIBE %>
|
|
</th>
|
|
<%}%>
|
|
|