username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PortraitCard.aspx.cs" Inherits="CY.WebForm.Pages.front.PortraitCard" %>
 
<!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>
</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>
            </tr>
            <tr>
                <td>
                    <select class="selectLaber"  name="pvcType">
                        <option value="人像卡">人像卡</option>
                        <option value="PVC卡">PVC卡</option>
                    </select>
                </td>
                <td>
                    <select class="selectLaber"  name="printSizeName">
                         <option value="86*54mm">86*54mm</option>
                         <option value="100*70mm">100*70mm</option>
                         <option value="120*80mm">120*80mm</option>
                         <option value="130*90mm">130*90mm</option>
                    </select>
                </td>
                <td>
                    <input type="text"  id="printCount" name="printCount" style="height: 15px; line-height: 15px; width:80px;" class="validateInt" defaultValue="10" value="10"/>
                </td>
            </tr>
        </tbody>
    </table>
    <table class="table2">
        <tbody>
            <tr>
                <th colspan="2">
                    后道工序
                </th>
            </tr>
            <tr>
                <td align="left" style="padding-left: 40px;">
                    <input type="checkbox" name="works" value="59">&nbsp;挂绳
                    <select name="lsType">
                        <option value="普通">普通</option>
                        <option value="印字">印字</option>
                    </select> 
                </td>
                <td align="left">
                    <input type="checkbox" name="works" value="55">&nbsp;卡套
                    <select name="ktType">
                        <option value="真皮卡套">真皮卡套</option>
                        <option value="塑料卡套">塑料卡套</option>
                        <option value="塑料软胶">塑料软胶</option>
                    </select> 
                </td>
            </tr>
        </tbody>
    </table>
</body>
</html>