username@email.com
2022-01-21 b18a7c8e54b51a5caa400e55cb8cc428c0301a0c
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CoveredCosts.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.CoveredCosts" %>
 
<!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 () {
        $("#tbCoveredListByOpticalCovered").mergeCell(
            {
                cols: [0]
            }
        );
 
        $("#tbCoveredListByAsianCovered").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"><b>覆膜费</b></td>
            <td style="width: 50px;">
                   <asp:Button ID="btnSave" Text="保存" runat="server" CssClass="Btn" OnClick="btnSave_Click" OnClientClick="showWait();"/>
            </td>
            </tr>
            </table>
<div style="width:48%; margin-right:2%; float:left;">
<div>覆膜类型:光膜</div>
     <asp:Repeater ID="RepCoveredListByOpticalCovered" runat="server">
        <HeaderTemplate>
            <table class="tableStyle" useMultColor="true" id="tbCoveredListByOpticalCovered">
            <tr>
                <th>纸张开数</th>
                <th>尺寸类型</th>
                <th>单价</th>
                <th>起价</th>
                <th style="display:none"></th>
            </tr>
        </HeaderTemplate>
        <ItemTemplate>
            <tr>
                <td><%#Eval("PageSizeName")%></td>
                <td><asp:Label ID="lblSizeType" Text='<%#Eval("SizeType")%>' runat="server"></asp:Label></td>
                <td><asp:TextBox ID="txtPrice" Text='<%#GetDecimalStr(Eval("Price"))%>' runat="server" CssClass="validateFloat"></asp:TextBox><%#Eval("Unit")%></td>
                <td><asp:TextBox ID="txtStartPrice" Text='<%#GetDecimalStr(Eval("StartPrice"))%>' runat="server" CssClass="validateFloat"></asp:TextBox>元</td>
                <td style="display:none"><asp:Label ID="lblPaperSizeValue" Text='<%#Eval("PaperSizeValue")%>' runat="server"></asp:Label></td>
            </tr>
        </ItemTemplate>
        <FooterTemplate>
            </table>
        </FooterTemplate>
     </asp:Repeater>
</div>
<div style="width:48%; float:left;">
<div>覆膜类型:亚膜</div>
<asp:Repeater ID="RepCoveredListByAsianCovered" runat="server">
        <HeaderTemplate>
            <table class="tableStyle" useMultColor="true" id="tbCoveredListByAsianCovered">
            <tr>
                <th>纸张开数</th>
                <th>尺寸类型</th>
                <th>单价</th>
                <th>起价</th>
                <th style="display:none"></th>
            </tr>
        </HeaderTemplate>
        <ItemTemplate>
            <tr>
                <td><%#Eval("PageSizeName")%></td>
                <td><asp:Label ID="lblSizeType" Text='<%#Eval("SizeType")%>' runat="server"></asp:Label></td>
                <td><asp:TextBox ID="txtPrice" Text='<%#GetDecimalStr(Eval("Price"))%>' runat="server" class="req float" msg="请输入正数字" min="0"></asp:TextBox><%#Eval("Unit")%></td>
                <td><asp:TextBox ID="txtStartPrice" Text='<%#GetDecimalStr(Eval("StartPrice"))%>' runat="server" class="req float" msg="请输入正数字" min="0"></asp:TextBox>元</td>
                <td style="display:none"><asp:Label ID="lblPaperSizeValue" Text='<%#Eval("PaperSizeValue")%>' runat="server"></asp:Label></td>
            </tr>
        </ItemTemplate>
        <FooterTemplate>
            </table>
        </FooterTemplate>
     </asp:Repeater>
</div>
</div>
    </form>
</body>
</html>