diff --git a/src/api/materialsStation/index.js b/src/api/materialsStation/index.js index ce77bef1..d3163d26 100644 --- a/src/api/materialsStation/index.js +++ b/src/api/materialsStation/index.js @@ -302,7 +302,7 @@ export function equipmentTypeTree(data) { } // 领料申请租赁工程下拉框 -export function getListProject(data) { +export function getListProject(data = {}) { return request({ url: '/material/select/getProjectInfo', method: 'post', @@ -846,3 +846,74 @@ export function getLeaseDataByCode(data) { }) } +// 站内直转-列表 +export function getUseDataApi(data) { + return request({ + url: '/material/material_direct/getUseData', + method: 'post', + data + }) +} + +// 站内直转-设备树 +export function getUseThreeTreeApi(data) { + return request({ + url: '/material/material_direct/getUseThreeTree', + method: 'post', + data + }) +} + +// 站内直转-新增 +export function addUseApi(data) { + return request({ + url: '/material/material_direct/add', + method: 'post', + data + }) +} + +// 站内直转审核 +export function getUseListApi(data) { + return request({ + url: '/material/material_direct/list', + method: 'get', + params: data + }) +} + +// 站内直转-编辑详情 +export function getInfoApi(query) { + return request({ + url: '/material/material_direct/getInfo', + method: 'get', + params: query + }) +} + +// 站内直转-编辑 +export function editUseApi(data) { + return request({ + url: '/material/material_direct/edit', + method: 'post', + data + }) +} + +// 站内直转-删除 +export function deleteUseApi(data) { + return request({ + url: '/material/material_direct/delete', + method: 'post', + data + }) +} + +// 站内直转-审核 +export function directUpdateApi(data) { + return request({ + url: '/material/material_direct/directUpdate', + method: 'post', + data + }) +} diff --git a/src/views/materialsStation/straight/straightTransfer/index.vue b/src/views/materialsStation/straight/straightTransfer/index.vue new file mode 100644 index 00000000..dade6856 --- /dev/null +++ b/src/views/materialsStation/straight/straightTransfer/index.vue @@ -0,0 +1,1503 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 上传图片 + + + + + + + + + + + + + + + + + + + + + + + 查询 + 重置 + + {{ isEdit ? '保存' : '发起提交' }} + + + + + + + + + + + + + 总共 + {{ total }} + 条数据,当前显示第 + {{ queryParams.pageNum }} + 页,每页 + {{ queryParams.pageSize }} + 条 + + + + + + 已选中 + {{ multipleSelection.length }} + 条数据 + + + 清空选择 + + + + + + + + + {{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }} + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/materialsStation/straight/straightTransferReview/components/title-tip.vue b/src/views/materialsStation/straight/straightTransferReview/components/title-tip.vue new file mode 100644 index 00000000..2970e850 --- /dev/null +++ b/src/views/materialsStation/straight/straightTransferReview/components/title-tip.vue @@ -0,0 +1,37 @@ + + + + {{ title }} + + + + + + diff --git a/src/views/materialsStation/straight/straightTransferReview/index.vue b/src/views/materialsStation/straight/straightTransferReview/index.vue new file mode 100644 index 00000000..2d9fa3be --- /dev/null +++ b/src/views/materialsStation/straight/straightTransferReview/index.vue @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + + + + + + 查询 + 重置 + + + + + + 导出数据 + + + + + + + + + + 待审核 + 审核中 + 已通过 + 已驳回 + + + + + + + 审核 + + + 编辑 + + + 删除 + + 查看 + + + + + + + + + + diff --git a/src/views/materialsStation/straight/straightTransferReview/reviewDetails.vue b/src/views/materialsStation/straight/straightTransferReview/reviewDetails.vue new file mode 100644 index 00000000..f8fc5cc5 --- /dev/null +++ b/src/views/materialsStation/straight/straightTransferReview/reviewDetails.vue @@ -0,0 +1,477 @@ + + + + + + 直转申请详情 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 流程记录 + + + + + + + + 审核结果: + 待审批 + 已通过 + 已驳回 + + + + 审核人: + {{ step.auditBy }} + + + + 审核时间: + {{ step.createTime }} + + + + 审核意见: + {{ step.remark }} + + + + + + + + + + + 通过 + 驳回 + + + + + + + + + + +