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
114
115
116
117
118
119
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MyQuoteList.aspx.cs" Inherits="CY.WebForm.Pages.business.MyQuoteList" %>
 
<!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">
                        <div class="box_tool_line">
                        </div>
                        <a href="javascript:;" onclick="BatchOperate({url:'/Pages/business/MyQuoteList.aspx?Target=BatchDelete'})">
                            <span class="icon_delete">批量删除</span></a>
                        <div class="box_tool_line">
                        </div> 
                        <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='w120px'>
                            报价需求
                        </th>
                        <th>
                            我的报价
                        </th>
                        <th class='w60px'>
                            报价价格
                        </th>
                        <th class='w100px'>
                            报价时间
                        </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='/Pages/business/QuoteDemandDeatil.aspx?id=<%#Eval("DemandId") %>' class='red'><span class="hand"
                                        title="查看需求">
                                        <%#Eval("Demand.DemandName")%>
                                    </span></a>
                                </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_view hand" title="查看" onclick="top.Dialog.open({
                                 URL: '/Pages/business/QuoteDemandDeatil.aspx?id=<%#Eval("Keyid") %>' , Title: '信息详情',Height:450 
                                 });"></span>
                                    <span class="img_edit hand" title="修改" onclick="top.Dialog.open({
                                 URL: '/Pages/business/QuoteDemandEdit.aspx?id=<%#Eval("Keyid") %>' , Title: '编辑信息' ,Height:450
                                 });"></span>
                                 <span class="img_delete hand" title="删除" onclick=""></span>
                                   
                                </td> --%>
                            </tr>
                        </ItemTemplate>
                    </asp:Repeater>
                </tbody>
            </table>
            <uc:UCPager ID="UCPager1" runat="server" />
        </div>
    </div>
    </form>
</body>
</html>