| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" type="text/css" href="./css/equipmentManagementAddModify.css">
- <title>设备管理修改</title>
- </head>
- <body class="gray-bg">
- <div class="clearfix wrapper wrapper-content animated fadeInRight">
- <div class="common">
- <table class="customerService">
- <tbody>
- <tr>
- <th>生产单位:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addProduction" />
- </div>
- </td>
- <th>工厂代码:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addFactoryCode" />
- </div>
- </td>
- </tr>
- <tr>
- <th>结扎机编号:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addLigatureMachineCode" />
- </div>
- </td>
- <th>拉伸膜包装机编号:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addStretchFilmCode" />
- </div>
- </td>
- </tr>
- <tr>
- <th>品管员代码:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addQCStaffCode" />
- </div>
- </td>
- </tr>
- <tr>
- <td colspan="8" style="text-align: center;">
- <button class="btns customerSubmit">确 定</button>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
-
- <script src="./js/equipmentManagementModify.js"></script>
- </body>
- </html>
|