From ee42bf1badae06026efa79dc17d2a541297ab49b Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 03 九月 2025 17:43:31 +0800
Subject: [PATCH] 采购管理整体样式优化,搜索条件修改

---
 src/pages/cooperativeOffice/collaborativeApproval/index.vue |   17 ++++++++++++++++-
 1 files changed, 16 insertions(+), 1 deletions(-)

diff --git a/src/pages/cooperativeOffice/collaborativeApproval/index.vue b/src/pages/cooperativeOffice/collaborativeApproval/index.vue
index b81583e..a3e3293 100644
--- a/src/pages/cooperativeOffice/collaborativeApproval/index.vue
+++ b/src/pages/cooperativeOffice/collaborativeApproval/index.vue
@@ -133,6 +133,7 @@
 	};
 	// 鏌ヨ鍒楄〃
 	const getList = () => {
+		showLoadingToast('鍔犺浇涓�...')
 		const page = {
 			current: -1,
 			size: -1,
@@ -142,11 +143,25 @@
 			})
 			.then((res) => {
 				ledgerList.value = res.data.records;
+				closeToast()
 			})
 			.catch(() => {
-				// tableLoading.value = false;
+				closeToast()
 			});
 	};
+	// 鏄剧ず鍔犺浇鎻愮ず
+	const showLoadingToast = (message) => {
+		uni.showLoading({
+			title: message,
+			mask: true
+		});
+	};
+
+	// 鍏抽棴鎻愮ず
+	const closeToast = () => {
+		uni.hideLoading();
+	};
+
 	// 鏄剧ず绛涢�夐�夐」
 	const showFilterOptions = () => {
 		uni.showActionSheet({

--
Gitblit v1.9.3