diff --git a/src/api/business/outbound.js b/src/api/business/outbound.js new file mode 100644 index 00000000..07494cea --- /dev/null +++ b/src/api/business/outbound.js @@ -0,0 +1,56 @@ +import request from '@/utils/request' + +// 工具台账-列表 +export const getOutboundList = (data = {}) => { + return request({ + url: '/material-mall/decChange/getOutboundList', + method: 'GET', + params: data + }) +} + +// 申请-获取详情 +export const getApplyDetailsApi = (data = {}) => { + return request({ + url: '/material-mall/decChange/getDevDetailsById', + method: 'get', + params: data + }) +} + +export const out = (data = {}) => { + return request({ + url: '/material-mall/decChange/out', + method: 'post', + data: data + }) +} + +export const outCancel = (data = {}) => { + return request({ + url: '/material-mall/decChange/outCancel', + method: 'post', + data: data + }) +} + +export const outCancelAll = (data = {}) => { + return request({ + url: '/material-mall/decChange/outCancelAll', + method: 'post', + data: data + }) +} + +export const outAll = (data = {}) => { + return request({ + url: '/material-mall/decChange/outAll', + method: 'post', + data: data + }) +} + + + + + diff --git a/src/views/business/outbound/details.vue b/src/views/business/outbound/details.vue new file mode 100644 index 00000000..41b23201 --- /dev/null +++ b/src/views/business/outbound/details.vue @@ -0,0 +1,466 @@ + + + + +