Browse Source

打印机页面修改

liujiankang 7 years ago
parent
commit
84d4675e95

+ 6 - 6
watero-rst-web/src/main/webapp/WEB-INF/views/cm/maintenance/update_maintenance.ftl

@@ -35,12 +35,12 @@
             <label class="form-label col-2 col-sm-2 huanhang">维修产品:</label>
             <div class="formControls col-10 col-sm-10 text-c huanhang" style="margin-bottom: 15px;">
 
-                <table class="table table-border table-bg table-bordered" style="width: 520px;">
+                <table class="table table-border table-bg table-bordered" style="width: 420px;">
                     <thead>
                     <tr class="text-c">
-                        <th style="text-align: center;" width="80">产品名称</th>
-                        <th style="text-align: center;" width="130">产品颜色</th>
-                        <th style="text-align: center;" width="100">产品编号</th>
+                        <th style="text-align: center;" width="100">产品名称</th>
+                        <th style="text-align: center;" width="50">产品颜色</th>
+                        <th style="text-align: center;" width="50">产品编号</th>
                     </tr>
                     </thead>
                     <tbody id="addProduct">
@@ -51,7 +51,7 @@
                                 <input type="radio" id="radio-${product.productId!''}" name="productId" value="${product.productId!''}" <#if product.productId == maintenanceInfo.productId>checked</#if>/>${product.productName!''}
                             </td>
                             <td>
-                                <select name="colorId${product.productId!''}" id="colorId${product.productId!''}" style="width:60px" class="select">
+                                <select name="colorId${product.productId!''}" id="colorId${product.productId!''}" style="width:90%;" class="my-select">
                                     <#if (product.colorList?size > 0)>
                                         <#list product.colorList as colorList>
                                             <option value ="${colorList.colorId!''}">${colorList.colorName!''}</option>
@@ -62,7 +62,7 @@
                                 </select>
                             </td>
                             <td>
-                                <input class="input-text" type="text" id="maintenanceEquipmentNumber${product.productId!''}" name="maintenanceEquipmentNumber${product.productId!''}" style="width: 20%;" placeholder="机器编号" /><br>
+                                <input class="input-text" type="text" id="maintenanceEquipmentNumber${product.productId!''}" name="maintenanceEquipmentNumber${product.productId!''}" style="width: 100%;" placeholder="机器编号" /><br>
                             </td>
 
                         </tr>