feat(钢卷管理): 新增调制度和镀层种类字段
在钢卷管理的多个页面和组件中添加调制度(temperGrade)和镀层种类(coatingType)字段,包括表单输入、显示和查询功能。同时优化了部分页面布局和代码结构,移除了不再使用的质量状态枚举定义
This commit is contained in:
54
klp-ui/src/views/wms/coil/panels/stepSplit.vue
Normal file
54
klp-ui/src/views/wms/coil/panels/stepSplit.vue
Normal file
@@ -0,0 +1,54 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user