feat: 产品订阅页面优化

This commit is contained in:
Gsh
2025-06-29 14:42:10 +08:00
parent d4f00eb89f
commit 0089e63832
6 changed files with 449 additions and 564 deletions

View File

@@ -1,9 +1,19 @@
<!-- LayoutBlankPage/index.vue -->
<script setup lang="ts">
</script>
<template>
<!-- 完全空白不包裹任何容器 -->
<router-view />
<div class="layout-blank">
<!-- 完全空白不包裹任何容器 -->
<router-view />
</div>
</template>
<style scoped>
.layout-blank{
height: 100vh;
overflow: auto;
margin: 20px ;
}
/* 无样式 */
</style>