<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OrderOperate.aspx.cs" Inherits="CY.WebForm.Pages.business.OrderOperate" %>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
<head id="Head1" runat="server">
|
<title>订单操作</title>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div id="scrollContent">
|
<div>
|
<table class="tableStyle" useclick="false" usecheckbox="true" sortmode="false">
|
<thead>
|
<tr>
|
<th class='w120px'>
|
操作
|
</th>
|
<th>
|
操作人
|
</th>
|
<th>
|
备注
|
</th>
|
<th class='w120px'>
|
操作时间
|
</th>
|
</tr>
|
</thead>
|
<tbody>
|
<asp:Repeater ID="rptData" runat="server">
|
<ItemTemplate>
|
<tr>
|
<td>
|
订单置为<strong><%#Eval("OperateTypeObj.Name")%></strong>
|
</td>
|
<td>
|
<%#Eval("Operator")%>
|
</td>
|
<td>
|
<%#Eval("Remark")%>
|
</td>
|
<td>
|
<%#Eval("LastUpdateTime", "{0:yyyy-MM-dd HH:mm:ss}")%>
|
</td>
|
</tr>
|
</ItemTemplate>
|
</asp:Repeater>
|
</tbody>
|
</table>
|
</div>
|
</div>
|
</form>
|
</body>
|
</html>
|