style(wms): 调整运单表格样式,移除多余边框并优化行高

移除表格行的边框样式,并在表格底部添加空行以加粗最后一行线
优化表格行高设置,移除冗余的 !important 标记
This commit is contained in:
砂糖
2026-02-02 17:33:34 +08:00
parent ab78df57a9
commit ca76147ee6

View File

@@ -84,7 +84,21 @@
<td><input type="number" class="table-input transparent-input" v-model.number="item.weight"
placeholder="0.00" /></td>
<!-- <td><input type="text" class="table-input transparent-input" v-model="item.unitPrice" /></td> -->
</tr>
<!-- 加粗最后一行的线 -->
<tr style="height: 0;">
<td style="height: 0;"></td>
<td style="height: 0;"></td>
<td style="height: 0;"></td>
<td style="height: 0;"></td>
<td style="height: 0;"></td>
<td style="height: 0;"></td>
<td style="height: 0;"></td>
<td style="height: 0;"></td>
<td style="height: 0;"></td>
<!-- <td><input type="number" class="table-input transparent-input" v-model.number="item.quantity"
placeholder="0" /></td> -->
<td style="height: 0;"></td>
</tr>
</tbody>
</table>
@@ -544,10 +558,6 @@ export default {
white-space: nowrap;
}
.waybill-table tr {
border: 1px solid #000;
}
/* 表格列宽设置 */
.waybill-table th:nth-child(1),
.waybill-table td:nth-child(1) {
@@ -665,7 +675,7 @@ export default {
padding: 0 !important;
margin: 0 !important;
line-height: 6mm !important;
height: 6mm !important;
height: 6mm;
vertical-align: middle !important;
}