<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PVCFastCost.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.PVCFastCost" %>
|
|
<!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" />
|
<script type="text/javascript">
|
$(
|
function () {
|
parent.iframeHeight('Ifr2');
|
parent.parent.iframeHeight('frmrightChild');
|
}
|
);
|
</script>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div id="scrollContent">
|
<table>
|
<tr>
|
<td><span style="color:Red"><%=GetFastSetMsg(33)%></span></td>
|
</tr>
|
</table>
|
<table class="table2">
|
<tr>
|
<td align="left"><b>PVC卡</b></td>
|
<td style="width: 50px;">
|
<asp:Button ID="btnSave" Text="保存" runat="server" CssClass="Btn" OnClick="btnSave_Click" OnClientClick="showWait()" />
|
</td>
|
</tr>
|
</table>
|
<asp:Repeater ID="RepPVCFastCostList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useMultColor="true" id="tbPVCFastCostList">
|
<tr>
|
<th>单位(元/张)</th>
|
<th>100张</th>
|
<th>200张</th>
|
<th>300张</th>
|
<th>500张</th>
|
<th>1000张</th>
|
<th>2000张</th>
|
<th>3000张</th>
|
<th>5000张</th>
|
<th>10000张</th>
|
<th style="display:none"></th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td><%#Eval("TypeNmae")%></td>
|
<td><asp:TextBox id="txtPrice100" Text='<%#GetDecimalStr(Eval("Price100"))%>' runat="server" CssClass="validateFloat" style="width:60px"/></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice200" Text='<%#GetDecimalStr(Eval("Price200"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice300" Text='<%#GetDecimalStr(Eval("Price300"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice500" Text='<%#GetDecimalStr(Eval("Price500"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice1000" Text='<%#GetDecimalStr(Eval("Price1000"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice2000" Text='<%#GetDecimalStr(Eval("Price2000"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice3000" Text='<%#GetDecimalStr(Eval("Price3000"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice5000" Text='<%#GetDecimalStr(Eval("Price5000"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice10000" Text='<%#GetDecimalStr(Eval("Price10000"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td style="display:none"><asp:Label ID="lblSpec" runat="server" Text='<%#Eval("PVCTypeId")%>'></asp:Label></td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
<tr>
|
<td colspan="11"><span style="color:Red">注:此处填写的价格是每张单价</span></td>
|
</tr>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
<table class="table2">
|
<tr>
|
<td align="left"><b>人像卡</b></td>
|
<td style="width: 50px;">
|
<asp:Button ID="btnSave_PortraitCard" Text="保存" runat="server" CssClass="Btn" OnClick="btnSave_PortraitCard_Click" OnClientClick="showWait()" />
|
</td>
|
</tr>
|
</table>
|
<asp:Repeater ID="RepPortraitCardList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useMultColor="true" id="tbPortraitCardList">
|
<tr>
|
<th>面积</th>
|
<th>印刷次数</th>
|
<th>单价</th>
|
<th>起价</th>
|
<th style="display:none"></th>
|
<th style="display:none"></th>
|
<th style="display:none"></th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td><%#Eval("Area")%></td>
|
<td><%#Eval("PrintCountName")%></td>
|
<td><asp:TextBox id="txtPrice" Text='<%#GetDecimalStr(Eval("Price"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtStartPrice" Text='<%#GetDecimalStr(Eval("StartPrice"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td style="display:none"><asp:Label ID="lblArea" runat="server" Text='<%#Eval("Area")%>'></asp:Label></td>
|
<td style="display:none"><asp:Label ID="lblMinPrintCount" runat="server" Text='<%#Eval("MinPrintCount")%>'></asp:Label></td>
|
<td style="display:none"><asp:Label ID="lblMaxPrintCount" runat="server" Text='<%#Eval("MaxPrintCount")%>'></asp:Label></td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</div>
|
</form>
|
</body>
|
</html>
|