39 lines
829 B
Vue
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> |