From ab78df57a9b8a9194053a6131b8b50427c462cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Mon, 2 Feb 2026 17:23:21 +0800 Subject: [PATCH] =?UTF-8?q?refactor(wms):=20=E5=B0=86=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=E6=9B=BF=E6=8D=A2=E4=B8=BA=E5=8F=AF=E7=BC=96=E8=BE=91?= =?UTF-8?q?div=E5=B9=B6=E8=B0=83=E6=95=B4=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将所有input元素替换为contenteditable的div元素 - 统一调整字体大小从16px到18px - 调整表格行边框样式 - 修改每页显示数量从8改为7 --- .../views/wms/delivery/components/wayBill.vue | 77 +++++++++---------- 1 file changed, 38 insertions(+), 39 deletions(-) diff --git a/klp-ui/src/views/wms/delivery/components/wayBill.vue b/klp-ui/src/views/wms/delivery/components/wayBill.vue index e18176d6..a28a82a5 100644 --- a/klp-ui/src/views/wms/delivery/components/wayBill.vue +++ b/klp-ui/src/views/wms/delivery/components/wayBill.vue @@ -9,34 +9,34 @@
收货单位: - +
{{ localWaybill.consigneeUnit }}
- +
{{ localWaybill.deliveryYear }}
- +
{{ localWaybill.deliveryMonth }}
- +
{{ localWaybill.deliveryDay }}
发货单位: - +
{{ localWaybill.senderUnit }}
负责人: - +
{{ localWaybill.principal }}
电话: - +
{{ localWaybill.principalPhone }}
车牌: - +
{{ localWaybill.licensePlate }}
@@ -70,21 +70,15 @@ - - - - - - - - - - - - - - - +
{{ item.productName }}
+
{{ item.edgeType }}
+
{{ item.packageType }}
+
{{ item.actualWarehouseName }}
+
{{ item.settlementType }}
+
{{ item.rawMaterialFactory }}
+
{{ item.coilNumber }}
+
{{ item.specification }}
+
{{ item.material }}
- 取货地点: + 取货地点: @@ -115,19 +109,19 @@ @@ -165,7 +159,7 @@ export default { data() { return { currentPage: 1, - perPage: 8, + perPage: 7, totalPages: 1, // 本地可编辑的发货单数据 localWaybill: { @@ -482,7 +476,7 @@ export default { font-weight: bold; display: inline-block; width: 100px; - font-size: 16px; + font-size: 18px; text-align: right; white-space: nowrap; } @@ -496,11 +490,12 @@ export default { padding: 4px 8px; border: 1px solid #dcdfe6; border-radius: 4px; - font-size: 16px; + font-size: 18px; font-weight: bold; font-family: SimSun, serif; outline: none; transition: all 0.2s; + line-height: 18px; border-bottom: 1px dashed #dcdfe6; } @@ -542,13 +537,17 @@ export default { line-height: 6mm; text-align: center; vertical-align: middle; - font-size: 16px; + font-size: 18px; font-weight: 900; padding: 0; overflow: hidden; white-space: nowrap; } +.waybill-table tr { + border: 1px solid #000; +} + /* 表格列宽设置 */ .waybill-table th:nth-child(1), .waybill-table td:nth-child(1) { @@ -645,7 +644,7 @@ export default { outline: none; background: transparent; /* font-family: inherit; */ - font-size: 16px; + font-size: 18px; line-height: 6mm; text-align: center; vertical-align: middle; @@ -716,7 +715,7 @@ export default { /* 备注样式 */ .waybill-remarks { margin-bottom: 30px; - font-size: 15px; + font-size: 18px; line-height: 1.5; /* font-weight: 600; */ font-weight: bold; @@ -733,21 +732,21 @@ export default { justify-content: space-between; align-items: center; margin-bottom: 20px; - font-size: 16px; + font-size: 18px; } .waybill-pickup-location { display: flex; justify-content: space-between; align-items: center; - margin-bottom: 20px; - font-size: 16px; + margin-bottom: 10px; + font-size: 18px; } .waybill-pickup-location label { - font-size: 16px; + font-size: 18px; /* margin-right: 10px; */ text-align: left !important; width: 40px; @@ -768,7 +767,7 @@ export default { } .footer-item .label { - font-size: 16px; + font-size: 18px; margin-right: 10px; width: 40px; }