<%@ 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"> 烫金
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="20"> 烫银
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="34"> 印条码
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="35"> 二维码
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="36"> 丝印签名条
|
</td>
|
</tr>
|
<tr>
|
<td align="left" style="padding-left: 40px;">
|
<input type="checkbox" name="works" value="37"> 感应IP
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="38"> 接触IP
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="39"> 加磁条
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="40" class="fm" onclick="CoveredSelect(this)"> 闪金
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="41" class="fm" onclick="CoveredSelect(this)"> 闪银
|
</td>
|
</tr>
|
<tr>
|
|
<td align="left" style="padding-left: 40px;">
|
<input type="checkbox" name="works" value="11"> UV
|
</td>
|
<%--<td align="left">
|
<input type="checkbox" name="works" value="9"> 凹凸
|
</td>--%>
|
<td align="left">
|
<input type="checkbox" name="works" value="31"> 打孔
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="42"> 凸码
|
</td>
|
<td align="left">
|
<input type="checkbox" name="works" value="43"> 装小胶袋
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
</body>
|
</html>
|