<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Airbrush.aspx.cs" Inherits="CY.WebForm.Pages.front.Airbrush" %>
|
|
<!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>
|
</tr>
|
<tr>
|
<td>
|
<input type="text" name="brushWidth" class="validateFloat" defaultValue="0" value="0" />×<input type="text" name="brushHight" class="validateFloat" defaultValue="0" value="0" />平方米
|
</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(21);
|
foreach (CY.Model.SysInquiry_MultipleTypeInfo typeModel in typeList)
|
{
|
%>
|
<option value="<%=typeModel.KeyId%>"><%=typeModel.TypeNmae%></option>
|
<%
|
}
|
%>
|
</select>
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
<table class="table2">
|
<tbody>
|
<tr><th colspan="3">后道工序</th></tr>
|
<tr><td align="left" style="padding-left: 40px;">
|
<input type="checkbox" class="fm" name="works" value="28" onclick="CoveredSelect(this)" /> 单面覆光膜
|
</td>
|
<td align="left">
|
<input type="checkbox" class="fm" name="works" value="26" onclick="CoveredSelect(this)" /> 单面覆哑膜
|
</td>
|
<td align="left"> <input type="checkbox" name="works" value="33" /> 打扣眼 </td>
|
</tr>
|
</tbody>
|
</table>
|
</body>
|
</html>
|