| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link href="../css/init.css" rel="stylesheet" />
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link href="../css/WorkOrder/Search.css" rel="stylesheet">
- <link rel="stylesheet" href="../css/WorkOrder/jquery.editable-select.css" />
- <link rel="stylesheet" href="../js/comboSelect/combo.select.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <title>指派</title>
- <style>
- ul li {
- float: initial;
- list-style: none;
- }
- .common {
- width: 100%;
- text-align: center;
- padding: 10px 15px;
- }
- .common table {
- width: 100%;
- }
- .common table th {
- padding: 5px 8px 5px 0;
- text-align: right;
- }
- .common table td {
- padding: 6px 0 5px 10px;
- text-align: left;
- color: #717171;
- line-height: 200%;
- }
- .common table td textarea {
- width: 100%;
- vertical-align: middle;
- resize: none;
- outline: none;
- }
- .form-group {
- margin-bottom: 0;
- }
- button[disabled] {
- background-color: #999;
- }
-
-
- </style>
- </head>
- <body class="gray-bg">
- <div class="clearfix wrapper wrapper-content animated fadeInRight">
- <div class="common">
- <table class="customerService">
- <tbody>
- <tr>
- <th class="comaddressTitle">大区:</th>
- <td style="position: relative" class="comaddressSelect">
- <div class="form-group">
- <select class="form-control" id="customer_department">
- <option value ="">请选择</option>
- </select>
- </div>
- </td>
- <th class="submitterTitle"></th>
- <td style="position: relative" class="submitterSelect">
- <div class="form-group">
- <select class="form-control" id="customer_submitter">
- <option value ="">请选择</option>
- </select>
- </div>
- </td>
- </tr>
- <tr>
- <th class="contentTitle"></th>
- <td colspan="7">
- <textarea name="" rows="5" cols="" placeholder="" id="cont" style="margin-top:10px;"></textarea>
- </td>
- </tr>
- <tr>
- <td colspan="8" style="text-align: center;">
- <button class="btns customerSubmit">确 定</button>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <script src="../js/WorkOrder/jquery.editable-select.js"></script>
- <script src="../js/comboSelect/jquery.combo.select.js"></script>
- <script src="../js/WorkOrder/WorkOrderTransfer.js"></script>
- </body>
- </html>
|