form.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:5k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="form.aspx.cs" Inherits="web_new_repair_form" %>
- <!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>
- <form id="form1" runat="server">
- <div>
- <table style="width: 500px; border-right: #66cccc 0px solid; border-top: #66cccc 0px solid; border-left: #66cccc 0px solid; border-bottom: #66cccc 0px solid;" rules="all">
- <tr>
- <td colspan="4" style="height: 21px; background-color: #ccccff;">
- 85度C门店维修单</td>
- </tr>
- <tr>
- <td>
- 报修等级
- </td>
- <td>
- <asp:DropDownList ID="DropDownList3" runat="server" Width="102px">
- <asp:ListItem>普通</asp:ListItem>
- <asp:ListItem>紧急</asp:ListItem>
- </asp:DropDownList></td>
- <td colspan="2" style="vertical-align: middle; text-align: right; height: 20px;">
- <asp:Label ID="Label1" runat="server" Text="填写时间:" ForeColor="Black" BorderStyle="None" Font-Bold="True"></asp:Label>
- <asp:Label ID="wtime" runat="server" ForeColor="Black" Width="4cm" BorderStyle="None" Font-Bold="True"></asp:Label>
- </td>
- </tr>
- <tr>
- <td style="width:2cm; height: 23px;">
- 报修单号</td>
- <td style="height: 23px">
- <asp:Label ID="lbno" runat="server" BorderStyle="None" Width="2cm"></asp:Label></td>
- <td style="width:2cm; height: 23px;">
- 门店</td>
- <td style="width:2cm; height: 23px;">
- <asp:Label ID="department" runat="server" BorderStyle="None" Width="2cm"></asp:Label></td>
- </tr>
- <tr>
- <td style="width:2cm">
- 报修人</td>
- <td style="width:2cm">
- <asp:TextBox ID="bxperson" runat="server" Width="103px"></asp:TextBox></td>
- <td style="width:2cm">
- 门店电话</td>
- <td style="width:2cm">
- <asp:Label ID="tel" runat="server" BorderStyle="None" Width="2cm"></asp:Label></td>
- </tr>
- <tr>
- <td>
- 门店主管
- </td>
- <td>
- <asp:Label ID="bxmanger" runat="server" BorderStyle="None"></asp:Label>
- </td>
- <td>
- 报修部门</td>
- <td>
- <asp:DropDownList ID="DropDownList4" runat="server" Width="103px">
- <asp:ListItem></asp:ListItem>
- <asp:ListItem>营运</asp:ListItem>
- <asp:ListItem>面包</asp:ListItem>
- <asp:ListItem>西点</asp:ListItem>
- </asp:DropDownList>
- </td>
- </tr>
- <tr>
- <td>
- 设备类型
- </td>
- <td><asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource1"
- DataTextField="type" DataValueField="type" Width="2.7cm" AutoPostBack="True">
- </asp:DropDownList></td>
- <td>
- 设备名称</td>
- <td style="width: 2cm">
- <asp:DropDownList ID="DropDownList2" runat="server" DataSourceID="SqlDataSource2"
- DataTextField="eq_name" DataValueField="eq_name" Width="103px">
- </asp:DropDownList></td>
- </tr>
- <tr style="height:100px">
- <td style="width: 2cm">
- 问题描述
- </td>
- <td colspan="3">
- <asp:TextBox ID="TextBox1" runat="server" Height="89px" Rows="6" Width="99%" Columns="40" TextMode="MultiLine"></asp:TextBox></td>
- </tr>
- <tr>
- <td style="width: 2cm">
- 说明
- </td>
- <td colspan="3">
- 门店营运,面包,西点报修均由营运值班经理统一确认等级,上报维修部;
- <br />
- 普通报修时间:周一~周五(9:00~18:00)国假日除外;紧急报修时间:全天</td>
- </tr>
- <tr>
- <td colspan="4" align="center">
- <asp:Button ID="Button1" runat="server" Text="送件" OnClick="Button1_Click" Width="2cm" />
- </td>
- </tr>
- </table>
- </div>
- <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:oa1ConnectionString %>"
- SelectCommand="SELECT [type] FROM [OA_UNIT_TYPE]"></asp:SqlDataSource>
- <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:oa1ConnectionString %>"
- SelectCommand="SELECT [eq_name] FROM [OA_UNIT_DETAIL] WHERE ([eq_type] = @eq_type)">
- <SelectParameters>
- <asp:ControlParameter ControlID="DropDownList1" Name="eq_type" PropertyName="SelectedValue"
- Type="String" />
- </SelectParameters>
- </asp:SqlDataSource>
- </form>
- </body>
- </html>