<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SignboardCost.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.SignboardCost" %>
|
|
<!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 src="../../js/hb.js" type="text/javascript"></script>
|
<script type="text/javascript">
|
$(
|
function () {
|
$("#tbSignboardCostList").mergeCell(
|
{
|
cols: [0]
|
}
|
);
|
parent.iframeHeight('Ifr2');
|
parent.parent.iframeHeight('frmrightChild');
|
}
|
);
|
</script>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div id="scrollContent">
|
<table class="table2">
|
<tr>
|
<td align="left"><span style="color:Red"><%=GetFastSetMsg(18)%></span></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="RepSignboardCostList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useMultColor="true" id="tbSignboardCostList">
|
<tr>
|
<th>字名</th>
|
<th>厚度</th>
|
<th>单价(元/c㎡)</th>
|
<th>起价(元)</th>
|
<th>安装费(元/c㎡)</th>
|
<th>安装费起价(元)</th>
|
<th style="display:none"></th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td><%#Eval("CharacterName")%></td>
|
<td><asp:Label ID="lblThickness" Text='<%#Eval("Thickness")%>' runat="server"></asp:Label></td>
|
<td><asp:TextBox ID="txtPrice" Text='<%#GetDecimalStr(Eval("Price"))%>' runat="server" CssClass="validateFloat"></asp:TextBox></td>
|
<td><asp:TextBox ID="txtStartPrice" Text='<%#GetDecimalStr(Eval("StartPrice"))%>' runat="server" CssClass="validateFloat"></asp:TextBox></td>
|
<td><asp:TextBox ID="txtInstallPrice" Text='<%#GetDecimalStr(Eval("InstallPrice"))%>' runat="server" CssClass="validateFloat"></asp:TextBox></td>
|
<td><asp:TextBox ID="txtInstallStartPrice" Text='<%#GetDecimalStr(Eval("InstallStartPrice"))%>' runat="server" CssClass="validateFloat"></asp:TextBox></td>
|
<td style="display:none"><asp:Label ID="lblCharacterName" Text='<%#Eval("CharacterName")%>' runat="server"></asp:Label></td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</div>
|
</form>
|
</body>
|
</html>
|