From 7662665a4f88da0f8afa804bd4a34dfbefc1fb56 Mon Sep 17 00:00:00 2001
From: cuiqian2004 <cuiqian2004@163.com>
Date: 星期五, 29 八月 2025 15:17:59 +0800
Subject: [PATCH] get_pre_page_subtable_next_row

---
 App.vue |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/App.vue b/App.vue
index ce1885c..2e4a818 100644
--- a/App.vue
+++ b/App.vue
@@ -1,7 +1,8 @@
 <script>
 	import {
 		showModal,
-		showToast,
+		showInfo,
+		showError
 	} from "@/js/Page.js"
 	const rfidModule = uni.requireNativePlugin('RFIDModule');
 	var main;
@@ -70,7 +71,7 @@
 					rfidModule.initModule((res) => {
 						console.log("rfid initModule", res)
 						if (res.code < 0) {
-							showToast(res.msg);
+							showInfo(res.msg);
 						}
 
 					})
@@ -133,7 +134,7 @@
 						console.log("startScan", ret)
 						let text = ""
 						if (ret.code < 0) {
-							showToast(ret.msg);
+							showInfo(ret.msg);
 						} else {
 							const data = ret.data || []
 							if (Array.isArray(data)) {

--
Gitblit v1.9.1