Files
klp-oa/klp-ui/src/views/wms/coil/do/acid.vue
砂糖 a9ec3f6d10 feat(wms/coil): 新增酸洗操作页面并调整组件路径
新增酸洗操作页面(acid.vue)及相关功能,同时创建出货和入库页面占位文件。调整基础面板中追溯结果组件的导入路径,移除冗余注释。
2025-11-17 10:10:14 +08:00

39 lines
829 B
Vue

<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>