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.
46 lines
657 B
46 lines
657 B
4 years ago
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Entity.Operation.ShipmentInfo>" %>
|
||
|
|
||
|
<%if (Model != null)
|
||
|
{%>
|
||
|
<tr>
|
||
|
<th>
|
||
|
发运扫描时间
|
||
|
</th>
|
||
|
<td colspan="3">
|
||
|
<%=Model.SCANDATE %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>
|
||
|
大众顺序号
|
||
|
</th>
|
||
|
<td colspan="3">
|
||
|
<%=Model.VWSEQ %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>
|
||
|
底盘号
|
||
|
</th>
|
||
|
<td colspan="3">
|
||
|
<%=Model.VIN %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>
|
||
|
车身号
|
||
|
</th>
|
||
|
<td colspan="3">
|
||
|
<%=Model.KIN %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<%}
|
||
|
else
|
||
|
{%>
|
||
|
<tr>
|
||
|
<td colspan="4">
|
||
|
无法运记录!
|
||
|
</td>
|
||
|
</tr>
|
||
|
<%}%>
|