refactor(KLPService): 重构组件目录结构并新增多个表单选择组件

重构KLPService组件目录结构,将原有组件迁移至formItems子目录并新增多个表单选择组件。主要变更包括:
1. 移除CategorySelect组件及相关引用
2. 新增CraftSelect、AmountSelect、VendorSelect等表单组件
3. 优化WarehouseSelect组件支持禁用状态
4. 重构ProductSelect和RawMaterialSelect为卡片式选择器
5. 新增统一导出机制支持按需导入

同时更新相关视图文件以适配新的组件结构,改进代码可维护性和复用性。
This commit is contained in:
砂糖
2025-12-23 10:23:12 +08:00
parent 4ad9caf5c6
commit dabc6657e0
22 changed files with 1897 additions and 196 deletions

View File

@@ -161,27 +161,17 @@
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<!-- <el-dialog title="参数" @close="bomDialogVisible = false" :visible.sync="bomDialogVisible" width="600px" append-to-body>
<BomPanel :id="bomId" type="raw_material" @addBom="handleAddBom" :itemId="itemId" />
</el-dialog> -->
</div>
</template>
<script>
import { listRawMaterial, getRawMaterial, delRawMaterial, addRawMaterial, updateRawMaterial, addRawMaterialWithBom } from "@/api/wms/rawMaterial";
import CategorySelect from "@/components/KLPService/CategorySelect/index.vue";
import { listRawMaterial, getRawMaterial, delRawMaterial, updateRawMaterial, addRawMaterialWithBom } from "@/api/wms/rawMaterial";
import CategoryRenderer from '@/components/KLPService/Renderer/CategoryRenderer.vue';
// import BomPanel from '@/views/wms/bom/components/BomPanel.vue';
// import BomInfoMini from '@/components/KLPService/Renderer/BomInfoMini.vue';
export default {
name: "RawMaterial",
components: {
CategorySelect,
CategoryRenderer,
// BomPanel,
// BomInfoMini
},
dicts: ['common_swicth'],
data() {