<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="QuoteView.aspx.cs" Inherits="CY.WebForm.Pages.business.QuoteView" %>
|
|
<!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 runat="server">
|
<title>查看报价</title>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div class="box1" paneltitle="功能面板" roller="false">
|
<table>
|
<tr>
|
<td>
|
报价时间:
|
</td>
|
<td>
|
<input id="txtBeginDate" type="text" runat="server" class="date" />-<input id="txtEndDate"
|
type="text" runat="server" class="date" />
|
</td>
|
<td>
|
<asp:Button ID="btn_Search" Text="查询" runat="server" />
|
</td>
|
</tr>
|
</table>
|
</div>
|
<%-- <div class="box_tool_min padding_top2 padding_bottom2 padding_right5">
|
<div class="center">
|
<div class="left">
|
<div class="right">
|
<div class="padding_top5 padding_left10">
|
<a href="javascript:;" onclick=" "><span class="icon_export">导出当前页</span></a>
|
<div class="box_tool_line">
|
</div>
|
<a href="javascript:;" onclick=" "><span class="icon_export">导出全部</span></a>
|
<div class="clear">
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
<div class="clear">
|
</div>
|
</div>--%>
|
<div id="scrollContent">
|
<div>
|
<table class="tableStyle" useclick="false" usecheckbox="true" sortmode="false">
|
<thead>
|
<tr>
|
<th width="25">
|
</th>
|
<th width="25">
|
编号
|
</th>
|
<th class='w100px'>
|
报价人
|
</th>
|
<th>
|
报价信息
|
</th>
|
<th class='w60px'>
|
报价价格
|
</th>
|
<th class='w100px'>
|
报价时间
|
</th>
|
<th>
|
操作
|
</th>
|
</tr>
|
</thead>
|
<tbody>
|
<asp:Repeater ID="rptData" runat="server">
|
<ItemTemplate>
|
<tr>
|
<td>
|
<input type="checkbox" name='ckId' value='<%#Eval("Keyid")%>' />
|
</td>
|
<td>
|
<%#Container.ItemIndex + (UCPager1.PageSize *( UCPager1.PageIndex-1)+1)%>
|
</td>
|
<td>
|
<a href='javascript:void(0)' onclick="OpenWindowByUrl('/client/<%#Eval("QuoterId") %>.html')">
|
<%#Eval("Quoter.Name")%> </span>
|
</td>
|
<td>
|
<div style='width: 200px; height: 30px; overflow: hidden;' title='<%#Eval("QuoteInfo")%>'
|
keepdefaultstyle='true'>
|
<%#Eval("QuoteInfo")%></div>
|
</td>
|
<td>
|
<%#Eval("QuoterPrice", "{0:F2}")%>
|
</td>
|
<td>
|
<%#Eval("QuoteTime", "{0:yyyy-MM-dd}")%>
|
</td>
|
<td>
|
<span class="img_edit hand" title="查看需求" onclick="window.location=
|
'/Pages/business/QuoteDemandDeatil.aspx?quoteId=<%#Eval("Keyid") %>&id=<%#Eval("DemandId") %>';
|
"></span> <span class="img_edit hand" title="在线下单" onclick="window.location=
|
'/Pages/business/DemandOrderCreate.aspx?quoteId=<%#Eval("Keyid") %>&id=<%#Eval("DemandId") %>';
|
" style="display:none"></span>
|
</tr>
|
</ItemTemplate>
|
</asp:Repeater>
|
</tbody>
|
</table>
|
<uc:UCPager ID="UCPager1" runat="server" />
|
</div>
|
</div>
|
</form>
|
</body>
|
</html>
|