username@email.com
2025-05-15 9be7596c0b251c392ab0788f3d18806502c6ee76
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
120
121
122
123
124
125
126
<%@ Page Language="C#" AutoEventWireup="true" ValidateRequest="false" CodeBehind="PlanOrderDetail.aspx.cs" Inherits="CY.WebForm.Pages.financial.PlanOrderDetail" %>
 
<!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>
        <table class="tableStyle">
            <tr>
                <td class="ali03 ">
                    省:
                </td>
                <td>
                    <span runat="server" id="spnsheng"></span>
                </td>
                 <td class="ali03 ">
                    市:
                </td>
                <td>
                    <span runat="server" id="spnshi"></span>
                </td>
                 <td class="ali03 ">
                    区县:
                </td>
                <td>
                    <span runat="server" id="spnquxian"></span>
                </td>
                 <td class="ali03 ">
                    片区:
                </td>
                <td>
                    <span runat="server" id="spnpianqu"></span>
                </td>
            </tr>
            <tr>
               
                 <td class="ali03 ">
                    学校:
                </td>
                <td>
                    <span runat="server" id="spnshipAddress"></span>
                </td>
                  <td class="ali03 ">
                    联系人:
                </td>
                <td>
                    <span runat="server" id="spnshipName"></span>
                </td>
                 <td class="ali03 ">
                    联系电话:
                </td>
                <td>
                    <span runat="server" id="spnshipMobile"></span>
                </td>
                 <td class="ali03 ">
                    收货地址:
                </td>
                <td>
                    <span runat="server" id="spnshouhuoAddress"></span>
                </td>
            </tr>
            <tr>
                <td class="ali03 ">
                    金额:
                </td>
                <td>
                    <span runat="server" id="spnorderAmount"></span>
                </td>
            </tr>
            <tr>
      
      
 
                <asp:Repeater ID="RepSubjeSetctList" runat="server">
                <HeaderTemplate>
                    <table class="tableStyle ali02" useclick="false" usecheckbox="true" sortmode="true">
                        <tr>
                     
                            <th>
                                 商品名称
                            </th>
                            <th>
                                单价(元)
                            </th>
                            <th>
                                 数量
                            </th>
                            <th>
                                 金额(元)
                            </th>
                             
                        </tr>
                </HeaderTemplate>
                <ItemTemplate>
                    <tr>
                       
                        <td>
                            <%#Eval("name")%> <%#Eval("specification")%>
                        </td>
                        <td>
                            <%#Eval("price")%> 
                        </td>
                       
                        <td>
                            <%#Eval("nums")%>
                        </td>
                        <td>
                            <%#Eval("amount")%>
                        </td>
                           
                    </tr>
                </ItemTemplate>
                <FooterTemplate>
                    </table>
                </FooterTemplate>
            </asp:Repeater>
  </tr>
        </table>
    </div>
    </form>
</body>
</html>