From 97d6362cfd23a82372d7e93033895c24db04f35a Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Mon, 5 Jan 2026 09:51:55 +0800 Subject: [PATCH] =?UTF-8?q?2026-01-05=20pda=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other-inout/otherInboundDetail.vue | 50 +++++++++++++------ .../modules/other-inout/otherInboundList.vue | 42 +++++++++++++--- .../other-inout/otherOutboundDetail.vue | 42 +++++++++++++--- .../modules/other-inout/otherOutboundList.vue | 42 +++++++++++++--- .../modules/sales-return/salesReturnList.vue | 42 +++++++++++++--- .../sales-return/salesReturnStorage.vue | 42 +++++++++++++--- 6 files changed, 208 insertions(+), 52 deletions(-) diff --git a/src/views/modules/other-inout/otherInboundDetail.vue b/src/views/modules/other-inout/otherInboundDetail.vue index 8248dd1..520f46b 100644 --- a/src/views/modules/other-inout/otherInboundDetail.vue +++ b/src/views/modules/other-inout/otherInboundDetail.vue @@ -14,15 +14,21 @@
- 入库单号 - {{ inboundInfo.inboundNo }} +
+ 入库单号 + {{ inboundInfo.inboundNo }} +
+
+ 关联单号 + {{ inboundInfo.relatedOrderNo || '-' }} +
+
+ 行号 + {{ inboundInfo.relatedOrderLineNo || '-' }} +
-
-
关联单号
-
{{ inboundInfo.relatedNo || '-' }}
-
标签张数
@@ -978,25 +984,39 @@ export default { } .card-title { + display: flex; + justify-content: space-between; + align-items: flex-end; margin-bottom: 16px; + gap: 8px; +} + +.title-item { display: flex; - align-items: center; - gap: 12px; + flex-direction: column; + flex: 1; +} + +.title-item:first-child { + flex: 1.5; } .title-label { - font-size: 14px; - color: #666; - font-weight: 500; - flex-shrink: 0; + font-size: 11px; + color: #999; + margin-bottom: 4px; + white-space: nowrap; } .title-value { - font-size: 16px; + font-size: 13px; font-weight: bold; color: #333; - line-height: 1.2; - flex: 1; + word-break: break-all; +} + +.title-item:first-child .title-value { + font-size: 15px; } .card-details { diff --git a/src/views/modules/other-inout/otherInboundList.vue b/src/views/modules/other-inout/otherInboundList.vue index 9d010b1..4d8b1dd 100644 --- a/src/views/modules/other-inout/otherInboundList.vue +++ b/src/views/modules/other-inout/otherInboundList.vue @@ -31,8 +31,18 @@ @click="goToInboundPage(item)" >
- 入库单号 - {{ item.inboundNo }} +
+ 入库单号 + {{ item.inboundNo }} +
+
+ 关联单号 + {{ item.relatedOrderNo || '-' }} +
+
+ 行号 + {{ item.relatedOrderLineNo || '-' }} +
@@ -260,21 +270,39 @@ export default { /* 卡片标题 */ .card-title { + display: flex; + justify-content: space-between; + align-items: flex-end; margin-bottom: 12px; + gap: 8px; +} + +.title-item { + display: flex; + flex-direction: column; + flex: 1; +} + +.title-item:first-child { + flex: 1.5; } .title-label { - font-size: 12px; - color: #666; - display: block; + font-size: 11px; + color: #999; margin-bottom: 4px; + white-space: nowrap; } .title-value { - font-size: 16px; + font-size: 13px; font-weight: bold; color: #333; - margin-left: 20px; + word-break: break-all; +} + +.title-item:first-child .title-value { + font-size: 15px; } /* 卡片详情 */ diff --git a/src/views/modules/other-inout/otherOutboundDetail.vue b/src/views/modules/other-inout/otherOutboundDetail.vue index 4cdd8ea..fed4940 100644 --- a/src/views/modules/other-inout/otherOutboundDetail.vue +++ b/src/views/modules/other-inout/otherOutboundDetail.vue @@ -36,8 +36,18 @@
- 出库单号 - {{ outboundInfo.outboundNo }} +
+ 出库单号 + {{ outboundInfo.outboundNo }} +
+
+ 关联单号 + {{ outboundInfo.relatedNo || '-' }} +
+
+ 行号 + {{ outboundInfo.relatedLineNo || '-' }} +
@@ -670,23 +680,39 @@ export default { } .card-title { + display: flex; + justify-content: space-between; + align-items: flex-end; margin-bottom: 16px; + gap: 8px; +} + +.title-item { + display: flex; + flex-direction: column; + flex: 1; +} + +.title-item:first-child { + flex: 1.5; } .title-label { font-size: 11px; color: #999; - display: block; - margin-bottom: 6px; - font-weight: normal; + margin-bottom: 4px; + white-space: nowrap; } .title-value { - font-size: 18px; + font-size: 13px; font-weight: bold; color: #333; - line-height: 1.2; - margin-left: 20px; + word-break: break-all; +} + +.title-item:first-child .title-value { + font-size: 15px; } .card-details { diff --git a/src/views/modules/other-inout/otherOutboundList.vue b/src/views/modules/other-inout/otherOutboundList.vue index 363b668..470f341 100644 --- a/src/views/modules/other-inout/otherOutboundList.vue +++ b/src/views/modules/other-inout/otherOutboundList.vue @@ -31,8 +31,18 @@ @click="goToOutboundPage(item)" >
- 出库单号 - {{ item.outboundNo }} +
+ 出库单号 + {{ item.outboundNo }} +
+
+ 关联单号 + {{ item.relatedNo || '-' }} +
+
+ 行号 + {{ item.relatedLineNo || '-' }} +
@@ -257,21 +267,39 @@ export default { /* 卡片标题 */ .card-title { + display: flex; + justify-content: space-between; + align-items: flex-end; margin-bottom: 12px; + gap: 8px; +} + +.title-item { + display: flex; + flex-direction: column; + flex: 1; +} + +.title-item:first-child { + flex: 1.5; } .title-label { - font-size: 12px; - color: #666; - display: block; + font-size: 11px; + color: #999; margin-bottom: 4px; + white-space: nowrap; } .title-value { - font-size: 16px; + font-size: 13px; font-weight: bold; color: #333; - margin-left: 20px; + word-break: break-all; +} + +.title-item:first-child .title-value { + font-size: 15px; } /* 卡片详情 */ diff --git a/src/views/modules/sales-return/salesReturnList.vue b/src/views/modules/sales-return/salesReturnList.vue index fdd6150..0447063 100644 --- a/src/views/modules/sales-return/salesReturnList.vue +++ b/src/views/modules/sales-return/salesReturnList.vue @@ -31,8 +31,18 @@ @click="goToReturnDetail(item)" >
- 退货单号 - {{ item.inboundNo }} +
+ 退货单号 + {{ item.inboundNo }} +
+
+ 关联单号 + {{ item.relatedOrderNo || '-' }} +
+
+ 行号 + {{ item.relatedOrderLineNo || '-' }} +
@@ -293,21 +303,39 @@ export default { /* 卡片标题 */ .card-title { + display: flex; + justify-content: space-between; + align-items: flex-end; margin-bottom: 12px; + gap: 8px; +} + +.title-item { + display: flex; + flex-direction: column; + flex: 1; +} + +.title-item:first-child { + flex: 1.5; } .title-label { - font-size: 12px; - color: #666; - display: block; + font-size: 11px; + color: #999; margin-bottom: 4px; + white-space: nowrap; } .title-value { - font-size: 16px; + font-size: 13px; font-weight: bold; color: #333; - margin-left: 20px; + word-break: break-all; +} + +.title-item:first-child .title-value { + font-size: 15px; } /* 卡片详情 */ diff --git a/src/views/modules/sales-return/salesReturnStorage.vue b/src/views/modules/sales-return/salesReturnStorage.vue index 4c47b2a..c247462 100644 --- a/src/views/modules/sales-return/salesReturnStorage.vue +++ b/src/views/modules/sales-return/salesReturnStorage.vue @@ -35,8 +35,18 @@
- 退货单号 - {{ materialInfo.inboundNo }} +
+ 退货单号 + {{ materialInfo.inboundNo }} +
+
+ 关联单号 + {{ materialInfo.relatedOrderNo || '-' }} +
+
+ 行号 + {{ materialInfo.relatedOrderLineNo || '-' }} +
@@ -776,23 +786,39 @@ export default { /* 卡片标题 */ .card-title { + display: flex; + justify-content: space-between; + align-items: flex-end; margin-bottom: 16px; + gap: 8px; +} + +.title-item { + display: flex; + flex-direction: column; + flex: 1; +} + +.title-item:first-child { + flex: 1.5; } .title-label { font-size: 11px; color: #999; - display: block; - margin-bottom: 6px; - font-weight: normal; + margin-bottom: 4px; + white-space: nowrap; } .title-value { - font-size: 18px; + font-size: 13px; font-weight: bold; color: #333; - line-height: 1.2; - margin-left: 20px; + word-break: break-all; +} + +.title-item:first-child .title-value { + font-size: 15px; } /* 卡片详情 */