From 9efd4a80aae58cf36266e774d3c820cc8e115028 Mon Sep 17 00:00:00 2001
From: cuiqian2004 <cuiqian2004@163.com>
Date: 星期四, 25 九月 2025 17:33:45 +0800
Subject: [PATCH] test

---
 pages/map/infos/scene-create.vue |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/pages/map/infos/scene-create.vue b/pages/map/infos/scene-create.vue
index 793bc09..3aa1b1b 100644
--- a/pages/map/infos/scene-create.vue
+++ b/pages/map/infos/scene-create.vue
@@ -57,6 +57,8 @@
 		showToast,
 		showModal,
 		session,
+		showError,
+		showInfo
 	} from "@/comm/utils.js"
 	import {
 		Button
@@ -100,6 +102,7 @@
 		computed: {
 
 		},
+		
 		mounted() {
 			const _this = this
 			uni.getSystemInfo({
@@ -139,7 +142,7 @@
 
 				} catch (ex) {
 
-					this.showError(ex)
+					showError(ex)
 				}
 			},
 			async loadMapLaserData() {
@@ -147,7 +150,7 @@
 					const info = await getMapLaserData(this.ip)
 					return info
 				} catch (ex) {
-					this.showError(ex)
+					showError(ex)
 					return {}
 				}
 			},
@@ -177,7 +180,7 @@
 					await createScene(this.ip, name, 1)
 					this.$emit('update:opSceneType', "scan");
 				} catch (ex) {
-					this.showError(ex)
+					showError(ex)
 				}
 
 			},

--
Gitblit v1.9.1