Files
klp-oa/klp-ui/src/views/wms/coil/panels/stepSplit.vue

54 lines
884 B
Vue
Raw Normal View History

<template>
<div>
分步分条
</div>
</template>
<script>
import { getMaterialCoil, listMaterialCoil } from '@/api/wms/coil'
import { completeAction } from '@/api/wms/pendingAction'
export default {
name: 'StepSplit',
props: {
actionId: {
type: String,
required: true,
},
coilId: {
type: String,
required: true,
},
},
data() {
return {
}
},
methods: {
// 查询待分条的钢卷信息
async getCoilInfo() {
},
// 查询钢卷的已分条列表
async getSplitList() {
},
// 新增一个分条表单
async addSplitForm() {
},
// 新增一个分条
async addSplit() {
},
// 完成整体分条
async completeSplit() {
},
}
}
</script>