From 4a63f03516cc177ad60ebbe28a65e80587846b3e Mon Sep 17 00:00:00 2001
From: yangfeng <wanwan926_4@163.com>
Date: 星期四, 24 八月 2023 14:56:45 +0800
Subject: [PATCH] 新增销售退款单增加选择退货单及其他bug

---
 src/components/layout/components/AppMain.vue |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/src/components/layout/components/AppMain.vue b/src/components/layout/components/AppMain.vue
index 7223e79..7cdbb3d 100644
--- a/src/components/layout/components/AppMain.vue
+++ b/src/components/layout/components/AppMain.vue
@@ -1,7 +1,9 @@
 <template>
   <div class="app-main">
     <AppHeader :headerTitle="$route.meta.title" />
-    <router-view :key="key" />
+    <div class="app-main-content">
+      <router-view :key="key" />
+    </div>
   </div>
 </template>
 
@@ -29,5 +31,9 @@
   flex-direction: column;
   // height: 100%;
   width: 100%;
+  .app-main-content {
+    width: 100%;
+    overflow-y: auto;
+  }
 }
 </style>

--
Gitblit v1.8.0