From 160272de5778bddbd8386f647258c95ecf9e02a5 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 19 Dec 2023 11:39:07 +0800
Subject: [PATCH] 水印处理

---
 src/page/index/layout.vue |   22 ++++++++++++++++------
 1 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/src/page/index/layout.vue b/src/page/index/layout.vue
index 96976dd..f45c01f 100644
--- a/src/page/index/layout.vue
+++ b/src/page/index/layout.vue
@@ -1,8 +1,18 @@
+<!--
+ * @Author: shuishen 1109946754@qq.com
+ * @Date: 2023-12-14 17:10:00
+ * @LastEditors: shuishen 1109946754@qq.com
+ * @LastEditTime: 2023-12-19 11:23:09
+ * @FilePath: \jczz_web\src\page\index\layout.vue
+ * @Description: 
+ * 
+ * Copyright (c) 2023 by shuishen, All Rights Reserved. 
+-->
 <template>
-  <div>
-    <keep-alive>
-      <router-view class="avue-view" v-if="$route.meta.keepAlive" />
-    </keep-alive>
-    <router-view class="avue-view" v-if="!$route.meta.keepAlive" />
-  </div>
+    <div>
+        <keep-alive>
+            <router-view class="avue-view" v-if="$route.meta.keepAlive" />
+        </keep-alive>
+        <router-view class="avue-view" v-if="!$route.meta.keepAlive" />
+    </div>
 </template>

--
Gitblit v1.9.3