feat(wms/coil): 新增酸洗操作页面并调整组件路径

新增酸洗操作页面(acid.vue)及相关功能,同时创建出货和入库页面占位文件。调整基础面板中追溯结果组件的导入路径,移除冗余注释。
This commit is contained in:
砂糖
2025-11-17 10:10:14 +08:00
parent 0e1017c7ab
commit a9ec3f6d10
4 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
<template>
<div class="app-container">
<el-row :gutter="20">
<el-col :span="12">
<!-- 领料 -->
</el-col>
<el-col :span="12">
<!-- 待操作 -->
</el-col>
</el-row>
</div>
</template>
<script>
import { listMaterialCoil } from '@/api/wms/coil'
import { listPendingAction, startProcess, cancelAction } from '@/api/wms/pendingAction'
export default {
name: 'AcidDo',
dicts: ['action_type'],
methods: {
// 获取当前待领的料
getMaterialCoil() {
listMaterialCoil({ dataType: 1, materialType: '原料' }).then(res => {
this.materialCoilList = res.data
})
},
// 获取待操作列表
getPendingAction() {
listPendingAction().then(res => {
this.pendingActionList = res.data
})
},
}
}
</script>

View File

View File

@@ -277,7 +277,7 @@ import ProductInfo from "@/components/KLPService/Renderer/ProductInfo";
import BomInfoMini from "@/components/KLPService/Renderer/BomInfoMini";
import RawMaterialInfo from "@/components/KLPService/Renderer/RawMaterialInfo";
// 引入封装的追溯结果组件
import CoilTraceResult from "./CoilTraceResult.vue"; // 路径根据实际存放位置调整
import CoilTraceResult from "./CoilTraceResult.vue";
import LabelRender from './LabelRender/index.vue'
import MaterialSelect from "@/components/KLPService/MaterialSelect";
import ActualWarehouseSelect from "@/components/KLPService/ActualWarehouseSelect";