From 4f7d8924b8c5f4f019b16a8563e30c48abef441e Mon Sep 17 00:00:00 2001
From: sen <sen@qq.com>
Date: 星期一, 01 九月 2025 13:30:50 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/yagwly_fa_master' into yagwly_fa_master

---
 ui/admin-ui3/src/views/cwgl/pendingSettlementBusiness/index.vue |   27 ++++++++++++++++++++-------
 1 files changed, 20 insertions(+), 7 deletions(-)

diff --git a/ui/admin-ui3/src/views/cwgl/pendingSettlementBusiness/index.vue b/ui/admin-ui3/src/views/cwgl/pendingSettlementBusiness/index.vue
index 713fcf3..8169e7b 100644
--- a/ui/admin-ui3/src/views/cwgl/pendingSettlementBusiness/index.vue
+++ b/ui/admin-ui3/src/views/cwgl/pendingSettlementBusiness/index.vue
@@ -191,7 +191,7 @@
       label: '瀹㈡埛鍚嶇О',
       search: true,
       minWidth: 220,
-
+      showOverflowTooltip: true,
       type: 'select',           // 璁剧疆涓轰笅鎷夋绫诲瀷
       dicData: [], // 浣跨敤 selectCustomName 浣滀负鏁版嵁婧�
       disabled: false  // 鏍规嵁闇�瑕佽缃槸鍚︾鐢�
@@ -246,15 +246,18 @@
 
     carrierName: {
       label: '鎵胯繍鍟�',
-      minWidth: 210,
+      minWidth: 220,
+      showOverflowTooltip: true,
     },
     departureLocation: {
       label: '鍑哄彂鍦�',
-      minWidth: 200,
+      minWidth: 220,
+      showOverflowTooltip: true,
     },
     arrivalLocation: {
       label: '鐩殑鍦�',
-      minWidth: 200,
+      minWidth:  220,
+      showOverflowTooltip: true,
 
     },
 
@@ -553,7 +556,7 @@
   dispatchNo.value = row.dispatchNo;
   dialog.title = '璐圭敤鏄庣粏';
   if (activeName.value == 'first') {
-    listEstimatedReceivable({ dispatchNo: row.dispatchNo, feeType: 1 }).then((res) => {
+    listEstimatedReceivable({ dispatchNo: row.dispatchNo, feeType: 1,isConfirmed:1 }).then((res) => {
       if (res.code === 200) {
         dialog.detail = true;
         tableDataList.value = res.rows || [];
@@ -561,7 +564,7 @@
     })
   } else if (activeName.value == 'second') {
     // 杩欓噷鍙互娣诲姞鏌ヨ鏀跺叆鐩稿叧鐨勯�昏緫
-    listEstimatedReceivable({ dispatchNo: row.dispatchNo, feeType: 0 }).then((res) => {
+    listEstimatedReceivable({ dispatchNo: row.dispatchNo, feeType: 0,isConfirmed:1 }).then((res) => {
       if (res.code === 200) {
         dialog.detail = true;
         tableDataList.value = res.rows || [];
@@ -570,7 +573,7 @@
   }
 }
 const getListVable = (dispatchNo, feeType) => {
-  listEstimatedReceivable({ dispatchNo: dispatchNo, feeType: feeType }).then((res) => {
+  listEstimatedReceivable({ dispatchNo: dispatchNo, feeType: feeType,isConfirmed:1 }).then((res) => {
     if (res.code === 200) {
       tableDataList.value = res.rows || [];
     }
@@ -608,3 +611,13 @@
   return sums;
 }
 </script>
+
+<style>
+:deep(.avue-crud__table) {
+  overflow-y: auto;
+}
+
+:deep(.el-scrollbar__bar.is-horizontal) {
+  pointer-events: auto;
+}
+</style>
\ No newline at end of file

--
Gitblit v1.8.0