feat: 新增库存管理功能:入库、出库、库存管理

This commit is contained in:
2026-07-20 16:22:30 +08:00
parent 72c1684f30
commit 3ce7eaf284
13 changed files with 1157 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
<template>
<stock-record-list :biz-type="1" quantity-label="入库数量" />
</template>
<script>
import StockRecordList from './components/stockRecordList.vue'
export default {
components: { StockRecordList }
}
</script>