feat(wms/coil): 新增酸洗操作页面并调整组件路径
新增酸洗操作页面(acid.vue)及相关功能,同时创建出货和入库页面占位文件。调整基础面板中追溯结果组件的导入路径,移除冗余注释。
This commit is contained in:
39
klp-ui/src/views/wms/coil/do/acid.vue
Normal file
39
klp-ui/src/views/wms/coil/do/acid.vue
Normal 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>
|
||||||
0
klp-ui/src/views/wms/coil/do/ship.vue
Normal file
0
klp-ui/src/views/wms/coil/do/ship.vue
Normal file
0
klp-ui/src/views/wms/coil/do/warehousing.vue
Normal file
0
klp-ui/src/views/wms/coil/do/warehousing.vue
Normal file
@@ -277,7 +277,7 @@ import ProductInfo from "@/components/KLPService/Renderer/ProductInfo";
|
|||||||
import BomInfoMini from "@/components/KLPService/Renderer/BomInfoMini";
|
import BomInfoMini from "@/components/KLPService/Renderer/BomInfoMini";
|
||||||
import RawMaterialInfo from "@/components/KLPService/Renderer/RawMaterialInfo";
|
import RawMaterialInfo from "@/components/KLPService/Renderer/RawMaterialInfo";
|
||||||
// 引入封装的追溯结果组件
|
// 引入封装的追溯结果组件
|
||||||
import CoilTraceResult from "./CoilTraceResult.vue"; // 路径根据实际存放位置调整
|
import CoilTraceResult from "./CoilTraceResult.vue";
|
||||||
import LabelRender from './LabelRender/index.vue'
|
import LabelRender from './LabelRender/index.vue'
|
||||||
import MaterialSelect from "@/components/KLPService/MaterialSelect";
|
import MaterialSelect from "@/components/KLPService/MaterialSelect";
|
||||||
import ActualWarehouseSelect from "@/components/KLPService/ActualWarehouseSelect";
|
import ActualWarehouseSelect from "@/components/KLPService/ActualWarehouseSelect";
|
||||||
|
|||||||
Reference in New Issue
Block a user