大提交一版

This commit is contained in:
2024-07-07 11:27:52 +08:00
parent 3933fb588b
commit 6121f0db7c
5 changed files with 175 additions and 38 deletions

View File

@@ -0,0 +1,28 @@
<script>
import AppMultipleStoreBoardFilter from "@/views/AppMultipleStoreBoardFilter.vue";
import AppStoresTable from "@/views/AppStoresTable.vue";
import AppNavbar from "@/views/AppNavbar.vue";
export default {
name: "AppMultipleStoreBoard",
components: {AppNavbar, AppStoresTable, AppMultipleStoreBoardFilter},
label: "多店看板"
}
</script>
<template>
<section class="AppMultipleStoreBoard">
<app-navbar/>
<app-multiple-store-board-filter/>
<app-stores-table class="fill"/>
</section>
</template>
<style scoped>
.AppMultipleStoreBoard {
width: 100%;
display: flex;
flex-direction: column;
}
</style>