username@email.com
2024-12-31 7dad3e5ef9896edc58a04c7b52e2978c33396d7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<%@ 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>