From c31a8def0ac90d86b8e8e345441bd28002a9ef2f Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期一, 16 六月 2025 20:14:52 +0800
Subject: [PATCH] add: 分享

---
 sub-pages/protocol/protocol.vue |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/sub-pages/protocol/protocol.vue b/sub-pages/protocol/protocol.vue
index fd85cb3..ee3e0b3 100644
--- a/sub-pages/protocol/protocol.vue
+++ b/sub-pages/protocol/protocol.vue
@@ -17,12 +17,10 @@
 onMounted(() => {
     const localTheme = uni.getStorageSync('theme') || 'light'
     theme.value = localTheme
-    console.log('theme', theme.value)
 })
 
 onLoad((options: { title?: string }) => {
     const title = options.title ? decodeURIComponent(options.title) : '';
-    console.log('接收到的title:', title);
     uni.setNavigationBarTitle({
 	title: title
 });
@@ -34,7 +32,6 @@
     $message.showLoading()
     const { data } = await $http.request('get', '/api/config/content/list/view?id=' +title, {})
     $message.hideLoading()
-    console.log('data:', data)
     protocol.value=data
 }
 

--
Gitblit v1.9.3