feat: 供应商管理

This commit is contained in:
duan
2025-02-27 15:55:35 +08:00
parent 0eb09b0aab
commit af5ba4c954
22 changed files with 881 additions and 3 deletions

View File

@@ -18,6 +18,7 @@ import Paging from './component/Paging.vue'
padding: 20px;
background-color: #fff;
border: 1px solid #e4e7ed;
margin-top: 20px;
border-radius: 4px;
}
</style>

View File

@@ -71,7 +71,7 @@ async function getPage() {
border: 1px solid #e4e7ed;
background-color: #fff;
border-radius: 4px;
margin: 20px 0;
margin-top: 20px;
padding: 20px;
display: flex;
align-items: center;

View File

@@ -3,5 +3,12 @@
<el-button>入库</el-button>
<el-button>出库</el-button>
<el-button>分类管理</el-button>
<el-button>供应商管理</el-button>
</template>
<el-button @click="toUrl('supplier')">供应商管理</el-button>
</template>
<script setup>
import { useRouter } from 'vue-router';
const router = useRouter();
function toUrl(name) {
router.push({ name });
}
</script>