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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PVCCard.aspx.cs" Inherits="CY.WebForm.Pages.front.PVCCard" %>
 
<!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>PVC卡询价</title>
</head>
<body>
    <input type="hidden" name="printMode" value="1" />
     <table class="table2">
        <tbody>
            <tr>
                <th style="text-align: center;">
                    类别
                </th>
                <th style="text-align: center;">
                   成品尺寸
                </th>
                <%--<th style="text-align: center;">
                   厚度 
                </th>--%>
                <th style="text-align: center;">
                   材质 
                </th>
                <th style="text-align: center;">
                   印刷数量  
                </th>
            </tr>
            <tr>
                <td>
                    <select class="selectLaber"  name="pvcType">
                        <option value="PVC卡">PVC卡</option>
                        <option value="人像卡">人像卡</option>
                    </select>
                </td>
                <td>
                    <select class="selectLaber"  name="printSizeName">
                         <option value="86*54mm">86*54mm</option>
                         <option value="100*70mm">100*70mm</option>
                    </select>
                </td>
                <%--<td>
                    <select class="selectLaber"  name="pvcThick">
                         <option value="0.76mm">0.76mm</option>
                         <option value="0.38mm">0.38mm</option>
                    </select>
                </td>--%>
                <td>
                     <select class="selectLaber" id="cupType" name="cupType">
                        <%
                            CY.BLL.Inquiry.MultipleTypeInfoBLL _multipleTypeInfoBLL = new CY.BLL.Inquiry.MultipleTypeInfoBLL();
                            IList<CY.Model.SysInquiry_MultipleTypeInfo> typeList= _multipleTypeInfoBLL.GetModelList(63);
                            foreach (CY.Model.SysInquiry_MultipleTypeInfo typeModel in typeList)
                            {
                        %>
                        <option value="<%=typeModel.KeyId%>"><%=typeModel.TypeNmae%></option>
                        <%
                            }
                        %>
                    </select>
                </td>
                <td align="center">
                    <div class="xialap">
                    <input type="text"  id="printCount" name="printCount" readonly="readonly"  style="height:15px; line-height:15px; width:80px;" class="validateInt" defaultValue="5000" value="5000"/>
                    <div class="xialapb">
                        <div class="xialapr">100</div>  
                        <div class="xialapr">200</div> 
                        <div class="xialapr">300</div> 
                        <div class="xialapr">500</div>
                        <div class="xialapr">1000</div>
                        <div class="xialapr">2000</div>
                        <div class="xialapr">3000</div>
                        <div class="xialapr">5000</div>
                        <div class="xialapr">10000</div>
                    </div>
                    </div>
                </td>
            </tr>
        </tbody>
    </table>
    <table class="table2">
        <tbody>
            <tr>
                <th colspan="5">
                    后道工序
                </th>
            </tr>
            <tr>
                <td align="left" style="padding-left: 40px;">
                    <input type="checkbox" name="works" value="8">&nbsp;烫金 
                </td>
                <td align="left">
                    <input type="checkbox" name="works"  value="20">&nbsp;烫银
                </td>
                <td align="left">
                    <input type="checkbox" name="works"  value="34">&nbsp;印条码
                </td>
                <td align="left">
                    <input type="checkbox" name="works"  value="35">&nbsp;二维码
                </td>
                <td align="left">
                    <input type="checkbox" name="works"  value="36">&nbsp;丝印签名条
                </td>
            </tr>
            <tr>
                <td align="left" style="padding-left: 40px;">
                    <input type="checkbox" name="works"  value="37">&nbsp;感应IP
                </td>
                <td align="left">
                    <input type="checkbox" name="works"  value="38">&nbsp;接触IP
                </td>
                <td align="left">
                    <input type="checkbox" name="works"  value="39">&nbsp;加磁条
                </td>             
                <td align="left">
                    <input type="checkbox" name="works"  value="40" class="fm" onclick="CoveredSelect(this)">&nbsp;闪金
                </td>
                 <td align="left">
                    <input type="checkbox" name="works"  value="41" class="fm" onclick="CoveredSelect(this)">&nbsp;闪银
                </td>
            </tr>
            <tr>
                
                 <td align="left" style="padding-left: 40px;">
                    <input type="checkbox" name="works"  value="11">&nbsp;UV
                </td>
                <%--<td align="left">
                    <input type="checkbox" name="works"  value="9">&nbsp;凹凸
                </td>--%>
                <td align="left">
                    <input type="checkbox" name="works"  value="31">&nbsp;打孔
                </td>
                <td align="left">
                    <input type="checkbox" name="works"  value="42">&nbsp;凸码
                </td>
                <td align="left">
                    <input type="checkbox" name="works"  value="43">&nbsp;装小胶袋
                </td>
            </tr>
        </tbody>
    </table>
</body>
</html>