From e705ef7b15c04307d6f37b388564dedfaeef4a55 Mon Sep 17 00:00:00 2001
From: 张诺 <zhang_12370@163.com>
Date: 星期二, 21 四月 2026 15:27:09 +0800
Subject: [PATCH] 阳光彩印web 生产报工的机台展示

---
 src/views/salesManagement/receiptPayment/index.vue |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/src/views/salesManagement/receiptPayment/index.vue b/src/views/salesManagement/receiptPayment/index.vue
index 7b03d7d..0d7066c 100644
--- a/src/views/salesManagement/receiptPayment/index.vue
+++ b/src/views/salesManagement/receiptPayment/index.vue
@@ -40,6 +40,7 @@
       <el-table
         :data="tableData"
         border
+        ref="tableRef"
         v-loading="tableLoading"
         @selection-change="handleSelectionChange"
         :row-key="(row) => row.id"
@@ -313,6 +314,7 @@
 });
 const total = ref(0);
 const expandedRowKeys = ref([]);
+const tableRef = ref(null);
 
 // 鐢ㄦ埛淇℃伅琛ㄥ崟寮规鏁版嵁
 const dialogFormVisible = ref(false);
@@ -335,7 +337,7 @@
 const getStatusTagType = (statusName = '') => {
   const normalized = statusName.trim();
   if (!normalized) return 'info';
-  return normalized === '鏈畬鎴愬洖娆�' ? 'danger' : 'success';
+  return normalized === '鏈畬鎴愪粯娆�' ? 'danger' : 'success';
 };
 // 鏌ヨ鍒楄〃
 /** 鎼滅储鎸夐挳鎿嶄綔 */
@@ -406,6 +408,8 @@
     param,
     ["receiptPaymentAmountTotal", "noReceiptAmount"],
     {
+      receiptPaymentAmountTotal: { decimalPlaces: 3 },
+      noReceiptAmount: { decimalPlaces: 3 },
       ticketsNum: { noDecimal: true }, // 涓嶄繚鐣欏皬鏁�
       futureTickets: { noDecimal: true }, // 涓嶄繚鐣欏皬鏁�
     }
@@ -413,7 +417,9 @@
 };
 // 瀛愯〃鍚堣鏂规硶
 const summarizeChildrenTable = (param) => {
-  return proxy.summarizeTable(param, ["receiptPaymentAmount"]);
+  return proxy.summarizeTable(param, ["receiptPaymentAmount"], {
+    receiptPaymentAmount: { decimalPlaces: 3 },
+  });
 };
 // 鎵撳紑寮规
 const openForm = () => {
@@ -491,6 +497,7 @@
   dialogFormVisible.value = false;
   // 閬垮厤浜屾鎵撳紑寮圭獥鏃朵粛鎼哄甫涓婁竴娆$殑閫夋嫨瀵艰嚧鈥滃鍑轰竴琛�/鑴忔暟鎹��
   selectedRows.value = [];
+  tableRef.value?.clearSelection();
 };
 
 // 鍒犻櫎鍥炴璁板綍

--
Gitblit v1.9.3