diff --git a/src/api/wmsManagement/wmGoodsOutProduction.js b/src/api/wmsManagement/wmGoodsOutProduction.js
new file mode 100644
index 0000000..ef731b1
--- /dev/null
+++ b/src/api/wmsManagement/wmGoodsOutProduction.js
@@ -0,0 +1,57 @@
+import request from '@/utils/request'
+
+/**
+* 出库货物记录表分页查询
+* @param {查询条件} data
+*/
+export function listWmGoodsOutProduction(query) {
+ return request({
+ url: 'business/WmGoodsOutProduction/list',
+ method: 'get',
+ params: query,
+ })
+}
+
+/**
+* 新增出库货物记录表
+* @param data
+*/
+export function addWmGoodsOutProduction(data) {
+ return request({
+ url: 'business/WmGoodsOutProduction',
+ method: 'post',
+ data: data,
+ })
+}
+/**
+* 修改出库货物记录表
+* @param data
+*/
+export function updateWmGoodsOutProduction(data) {
+ return request({
+ url: 'business/WmGoodsOutProduction',
+ method: 'PUT',
+ data: data,
+ })
+}
+/**
+* 获取出库货物记录表详情
+* @param {Id}
+*/
+export function getWmGoodsOutProduction(id) {
+ return request({
+ url: 'business/WmGoodsOutProduction/' + id,
+ method: 'get'
+ })
+}
+
+/**
+* 删除出库货物记录表
+* @param {主键} pid
+*/
+export function delWmGoodsOutProduction(pid) {
+ return request({
+ url: 'business/WmGoodsOutProduction/' + pid,
+ method: 'delete'
+ })
+}
diff --git a/src/views/wmsManagement/WmGoodsOutProduction.vue b/src/views/wmsManagement/WmGoodsOutProduction.vue
new file mode 100644
index 0000000..8e2093d
--- /dev/null
+++ b/src/views/wmsManagement/WmGoodsOutProduction.vue
@@ -0,0 +1,411 @@
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file