company_deal.aspx
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:6k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="company_deal.aspx.cs" Inherits="web_data_company_deal" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>无标题页</title>
  6. </head>
  7. <body>
  8.     <form id="form1" runat="server">
  9.     <div>
  10.         <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0">
  11.             <asp:View ID="View1" runat="server">
  12.                 <asp:Table ID="Table1" runat="server" Width="550px" BorderWidth="1px" GridLines="Both" Height="156px">
  13.                     <asp:TableRow runat="server" HorizontalAlign="Center" VerticalAlign="Middle">
  14.                         <asp:TableCell runat="server" Width="2cm">维修单号</asp:TableCell>
  15.                         <asp:TableCell runat="server" Width="4cm">
  16.                             <asp:Label ID="lb_no" runat="server" BorderStyle="None" Width="4cm"></asp:Label>
  17.                         </asp:TableCell>
  18.                         <asp:TableCell runat="server" Width="2cm">报修人</asp:TableCell>
  19.                         <asp:TableCell runat="server" Width="4cm">
  20.                         <asp:Label ID="lb_person" runat="server" BorderStyle="None" Width="4cm"></asp:Label>
  21.                         </asp:TableCell>
  22.                     </asp:TableRow>
  23.                     <asp:TableRow runat="server" HorizontalAlign="Center" VerticalAlign="Middle">
  24.                         <asp:TableCell runat="server" Width="2cm">门店</asp:TableCell>
  25.                         <asp:TableCell runat="server" Width="4cm">
  26.                         <asp:Label ID="lb_deparetment" runat="server" BorderStyle="None" Width="4cm"></asp:Label>
  27.                         </asp:TableCell>
  28.                         <asp:TableCell runat="server" Width="2cm">店内电话</asp:TableCell>
  29.                         <asp:TableCell runat="server" Width="4cm">
  30.                         <asp:Label ID="lb_tel" runat="server" BorderStyle="None" Width="4cm"></asp:Label>
  31.                         </asp:TableCell>
  32.                     </asp:TableRow>
  33.                     <asp:TableRow runat="server" HorizontalAlign="Center" VerticalAlign="Middle">
  34.                         <asp:TableCell runat="server" Width="2cm">设备类型</asp:TableCell>
  35.                         <asp:TableCell runat="server" Width="4cm">
  36.                         <asp:Label ID="lb_type" runat="server" BorderStyle="None" Width="4cm"></asp:Label>
  37.                         </asp:TableCell>
  38.                         <asp:TableCell runat="server" Width="2cm">设备名称</asp:TableCell>
  39.                         <asp:TableCell runat="server" Width="4cm">
  40.                         <asp:Label ID="lb_equipmet" runat="server" BorderStyle="None" Width="4cm"></asp:Label>
  41.                         </asp:TableCell>
  42.                     </asp:TableRow>
  43.                     <asp:TableRow runat="server" HorizontalAlign="Center" VerticalAlign="Middle">
  44.                         <asp:TableCell runat="server" Width="2cm">问题</asp:TableCell>
  45.                         <asp:TableCell runat="server" ColumnSpan="3">
  46.                         <asp:Label ID="lbcomment" runat="server" BorderStyle="None" Width="10cm"></asp:Label></asp:TableCell>
  47.                     </asp:TableRow>
  48.                 </asp:Table>
  49.             </asp:View>
  50.         </asp:MultiView></div>
  51.         <asp:MultiView ID="MultiView2" runat="server">
  52.             <asp:View ID="View2" runat="server">
  53.                 <asp:Table ID="Table2" runat="server" GridLines="Both" HorizontalAlign="Left" Style="width: 680px"
  54.                     Visible="true" Width="642px">
  55.                     <asp:TableRow runat="server" HorizontalAlign="Center" VerticalAlign="Middle">
  56.                         <asp:TableCell runat="server" Width="1.5cm"></asp:TableCell>
  57.                         <asp:TableCell runat="server" HorizontalAlign="Left" Width="10cm">
  58.                             <asp:RadioButtonList ID="RbAgree" runat="server" AutoPostBack="True" BorderStyle="None"
  59.                                 OnSelectedIndexChanged="RbAgree_SelectedIndexChanged" RepeatDirection="Horizontal"
  60.                                 Style="position: relative; left: 4px; top: 0px;" Width="163px">
  61.                                 <asp:ListItem Selected="True" Value="Y">已处理</asp:ListItem>
  62.                                 <asp:ListItem Value="N">未处理</asp:ListItem>
  63.                             </asp:RadioButtonList></asp:TableCell>
  64.                     </asp:TableRow>
  65.                     <asp:TableRow runat="server" HorizontalAlign="Center" VerticalAlign="Middle">
  66.                         <asp:TableCell runat="server" Width="1.5cm">意見</asp:TableCell>
  67.                         <asp:TableCell runat="server" HorizontalAlign="Left" Width="10cm">
  68.                             <asp:TextBox ID="TxtComment" runat="server" BorderStyle="None" Rows="5" Style="position: relative;
  69.                                 left: 0px; top: 1px;" TextMode="MultiLine" Width="10cm">已处理</asp:TextBox></asp:TableCell>
  70.                     </asp:TableRow>
  71.                     <asp:TableRow runat="server" HorizontalAlign="Center" TableSection="TableFooter"
  72.                         VerticalAlign="Middle">
  73.                         <asp:TableCell runat="server" ColumnSpan="2" HorizontalAlign="Center" VerticalAlign="Middle">
  74.                             <asp:Button ID="BtnOk" runat="server" OnClick="BtnOk_Click" Style="position: relative"
  75.                                 Text="送件" /></asp:TableCell>
  76.                     </asp:TableRow>
  77.                 </asp:Table>
  78.             </asp:View>
  79.         </asp:MultiView>
  80.     </form>
  81. </body>
  82. </html>