@skyfox2000/webui 1.3.17 → 1.3.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyfox2000/webui",
3
- "version": "1.3.17",
3
+ "version": "1.3.19",
4
4
  "description": "后台前端通用组件定义",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -9,11 +9,11 @@ const props = defineProps<{ routes: any }>();
9
9
  const appInfoStore = useAppInfo();
10
10
  const settingInfoStore = useSettingInfo();
11
11
 
12
- const bodyClass = ref('h-[calc(100vh-82px)]');
12
+ const bodyClass = ref('h-[calc(100vh-81px)]');
13
13
  watch(
14
14
  () => settingInfoStore.fullscreen,
15
15
  (newVal) => {
16
- bodyClass.value = newVal ? 'h-[calc(100vh-40px)]' : 'h-[calc(100vh-80px)]';
16
+ bodyClass.value = newVal ? 'h-[calc(100vh-40px)]' : 'h-[calc(100vh-81px)]';
17
17
  },
18
18
  );
19
19
 
@@ -23,7 +23,6 @@ onMounted(() => {
23
23
  </script>
24
24
  <template>
25
25
  <BaseLayout :routes="props.routes">
26
- <!-- 没有滚动条 -->
27
26
  <div class="relative" :class="bodyClass">
28
27
  <router-view v-slot="{ Component, route }">
29
28
  <keep-alive :include="appInfoStore.CachedComponents" :exclude="appInfoStore.ExcludeComponents">
package/vite.config.ts CHANGED
@@ -81,7 +81,6 @@ export default defineConfig(({ mode }: ConfigEnv) => {
81
81
  'vue-m-message',
82
82
  'vue-draggable-next',
83
83
  '@skyfox2000/fapi',
84
- '@skyfox2000/webbase',
85
84
  '@skyfox2000/microbase',
86
85
 
87
86
  '@vue-office/excel',