From 4c97737dc62dea8b922ce5e4d55d5ea44cae6b00 Mon Sep 17 00:00:00 2001
From: hongchao <3228015117@qq.com>
Date: Fri, 21 Mar 2025 09:16:45 +0800
Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../material/cost/component/applyDetail.vue | 2 ++
.../repair/repairManage/component/home.vue | 17 ++++++++++++++---
2 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/src/views/material/cost/component/applyDetail.vue b/src/views/material/cost/component/applyDetail.vue
index 1e8e0f20..0e6e3afe 100644
--- a/src/views/material/cost/component/applyDetail.vue
+++ b/src/views/material/cost/component/applyDetail.vue
@@ -14,6 +14,8 @@
>减免明细导出
全部明细导出
+ 各结算明细导出
提交
diff --git a/src/views/material/repair/repairManage/component/home.vue b/src/views/material/repair/repairManage/component/home.vue
index c6a778f5..53884e6a 100644
--- a/src/views/material/repair/repairManage/component/home.vue
+++ b/src/views/material/repair/repairManage/component/home.vue
@@ -160,10 +160,18 @@
{{ scope.row.maTypeName }}-{{ scope.row.typeName }}
-
-
- {{ scope.row.partName + " " }}*{{ " "+scope.row.partNum + " " }}/{{" ¥"+" "}}{{ scope.row.partPrice }}
+
+
+ 配件名称 * 数量 / 单价
+ 总价
+
+
+ {{ scope.row.partName + " " }}*{{ " "+scope.row.partNum + (scope.row.partPrice!== 0? " / ¥ " + scope.row.partPrice : " / 无") }}
+ {{ "¥"+" "+scope.row.partCost }}
+
+
+
@@ -640,4 +648,7 @@ export default {
.tabelAll .column:last-child {
border-right: none;
}
+.part-info .total-price {
+ margin-left: 20px; /* 调整间距大小 */
+}