Commit 5339d3ab authored by chenzj's avatar chenzj

新增调拨了页面

parent 7656995e
import request from '@/utils/request'
// 查询调拨料申请列表
export function listProAllocationMaterial(query) {
return request({
url: '/pro/ProAllocationMaterial/list',
method: 'get',
params: query
})
}
// 查询调拨料申请详细
export function getProAllocationMaterial(allocationMaterialId) {
return request({
url: '/pro/ProAllocationMaterial/' + allocationMaterialId,
method: 'get'
})
}
// 新增调拨料申请
export function addProAllocationMaterial(data) {
return request({
url: '/pro/ProAllocationMaterial',
method: 'post',
data: data
})
}
// 修改调拨料申请
export function updateProAllocationMaterial(data) {
return request({
url: '/pro/ProAllocationMaterial',
method: 'put',
data: data
})
}
// 删除调拨料申请
export function delProAllocationMaterial(allocationMaterialId) {
return request({
url: '/pro/ProAllocationMaterial/' + allocationMaterialId,
method: 'delete'
})
}
......@@ -27,7 +27,6 @@
:expand-on-click-node="false"
:filter-node-method="filterNode"
ref="tree"
default-expand-all
@node-click="handleNodeClick"
/>
</div>
......
This diff is collapsed.
......@@ -150,7 +150,7 @@
<span>{{ parseTime(scope.row.CreateTime, '{y}-{m}-{d}') }}</span>
</template> -->
</el-table-column>
<el-table-column label="预开始时间" align="center" prop="startTime" width="180"/>
<el-table-column label="需求日期" align="center" prop="startTime" width="180"/>
<el-table-column label="预结束时间" align="center" prop="endTime" width="180"/>
<el-table-column label="操作" width="80" align="center" class-name="small-padding fixed-width" fixed="right">
<template slot-scope="scope">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment