From 1382a7990e9b13f60c6416ada5477673a934dd16 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期四, 29 八月 2024 09:02:57 +0800
Subject: [PATCH] ll

---
 h5/main.js |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/h5/main.js b/h5/main.js
index 4c90c6f..619eb5b 100644
--- a/h5/main.js
+++ b/h5/main.js
@@ -17,6 +17,15 @@
 Vue.prototype.$store = store
 Vue.prototype.$jump = (url) => {uni.navigateTo({url})}
 Vue.prototype.$goBack = () => { uni.navigateBack() }
+Vue.prototype.showToast = (str) => {
+	setTimeout(() => {
+		uni.showToast({
+		  title: str,
+		  icon: 'none',
+		  duration: 2000
+		})
+	})
+}
 Vue.prototype.$eventBus = new Vue()
 Vue.prototype.$onWait = new Promise((resolve) => {
   Vue.prototype.$reslove = resolve

--
Gitblit v1.9.3