This commit is contained in:
李志鹏
2026-04-09 11:40:17 +08:00
parent 2b4e77f4e1
commit b50c471e97
11 changed files with 490 additions and 117 deletions

View File

@@ -12,17 +12,15 @@
</div>
</div>
<div class="view">
<router-view></router-view>
</div>
<toolTipBox v-model:visible="visible" @close="()=>{}"></toolTipBox>
<router-view></router-view>
<toolTipBox v-model:visible="visible" @close="() => {}"></toolTipBox>
</div>
</template>
<script setup>
import { ref, computed } from "vue"
import { useRoute, useRouter } from "vue-router"
import toolTipBox from './toolTipBox.vue'
import toolTipBox from "./toolTipBox.vue"
const route = useRoute()
const router = useRouter()
const visible = ref(false)
@@ -58,7 +56,6 @@
.seller-dashboard-index {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
@@ -67,6 +64,7 @@
display: flex;
align-items: center;
gap: 3.6rem;
margin-bottom: 4rem;
> div {
width: 18rem;
height: 6rem;
@@ -100,9 +98,5 @@
}
}
}
> .view {
margin-top: 4rem;
flex: 1;
}
}
</style>