From 815b4a7d590469bd388fbbff50f67d5d26c1fc36 Mon Sep 17 00:00:00 2001 From: jxj_yjl <1490736767@qq.com> Date: Sat, 15 Apr 2023 18:24:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E5=87=86=E7=89=88-=E4=BB=93=E5=BA=93?= =?UTF-8?q?=E3=80=81=E5=87=BA=E5=85=A5=E5=BA=93=E7=AE=A1=E7=90=86=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/js/api/warehouseManagement.js | 16 + src/assets/js/http.js | 4 +- src/router/index.js | 18 + .../basicInformation/InbOutboundType.vue | 287 ++++ .../basicInformation/productManagement.vue | 540 ++++--- .../basicInformation/warehouseList.vue | 493 +++---- .../inOutManagement/outboundManagement.vue | 1274 +++++++++++++++++ .../inOutManagement/warehousingManagement.vue | 1249 ++++++++++++++++ 8 files changed, 3298 insertions(+), 583 deletions(-) create mode 100644 src/assets/js/api/warehouseManagement.js create mode 100644 src/views/projectFront/warehouseManagement/basicInformation/InbOutboundType.vue create mode 100644 src/views/projectFront/warehouseManagement/inOutManagement/outboundManagement.vue create mode 100644 src/views/projectFront/warehouseManagement/inOutManagement/warehousingManagement.vue diff --git a/src/assets/js/api/warehouseManagement.js b/src/assets/js/api/warehouseManagement.js new file mode 100644 index 00000000..1e8a9ccf --- /dev/null +++ b/src/assets/js/api/warehouseManagement.js @@ -0,0 +1,16 @@ +/** + * api接口统一管理 、、质量管理 + */ +import {post, get} from '../http' + +//基本信息管理-仓库管理 +export const addStuffWarehouseApi = data => post('/xmgl/stuff/stuffWarehouse/add', data); +export const deleteStuffWarehouseApi = data => post('/xmgl/stuff/stuffWarehouse/delete', data); +export const editStuffWarehouseApi = data => post('/xmgl/stuff/stuffWarehouse/edit', data); +export const getStuffWarehousePageApi = data => get('/xmgl/stuff/stuffWarehouse/page', data); + +//基本信息管理-供应商管理 +export const addStuffVendorApi = data => post('/xmgl/stuff/stuffVendor/add', data); +export const deleteStuffVendorApi = data => post('/xmgl/stuff/stuffVendor/delete', data); +export const editStuffVendorApi = data => post('/xmgl/stuff/stuffVendor/edit', data); +export const getStuffVendorPageApi = data => get('/xmgl/stuff/stuffVendor/page', data); \ No newline at end of file diff --git a/src/assets/js/http.js b/src/assets/js/http.js index 4152301e..95c68102 100644 --- a/src/assets/js/http.js +++ b/src/assets/js/http.js @@ -80,10 +80,10 @@ if (process.env.NODE_ENV == 'development') { // axios.defaults.baseURL = 'http://192.168.34.221:12346' //郭圣雄本地 // axios.defaults.baseURL = 'http://192.168.34.221:12350' //金林湾本地 // axios.defaults.baseURL = 'http://192.168.34.122:8070' //彭洁本地 - // axios.defaults.baseURL = 'http://192.168.34.221:8070' //演示平台本地 + axios.defaults.baseURL = 'http://192.168.34.221:8070' //演示平台郭圣雄本地 // axios.defaults.baseURL = 'http://101.43.164.214:11111' //百色线上 // axios.defaults.baseURL = 'http://101.43.164.214:12345/'//内蒙古线上 - axios.defaults.baseURL = 'http://121.196.214.246/api/'//金林湾线上新 + // axios.defaults.baseURL = 'http://121.196.214.246/api/'//金林湾线上新 } else if (process.env.NODE_ENV == 'debug') { axios.defaults.baseURL = 'https://www.ceshi.com' diff --git a/src/router/index.js b/src/router/index.js index fe731918..739e6c87 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1110,6 +1110,24 @@ const routes2 = [ component: () => import("@/views/projectFront/warehouseManagement/basicInformation/employeeManagement.vue") }, + { + path: "/warehouseManagement/basicInformation/InbOutboundType", + name: "物料管理_基础信息管理_出入库类型", + component: () => + import("@/views/projectFront/warehouseManagement/basicInformation/InbOutboundType.vue") + }, + { + path: "/warehouseManagement/inOutManagement/warehousingManagement", + name: "物料管理_出入库管理_入库管理", + component: () => + import("@/views/projectFront/warehouseManagement/inOutManagement/warehousingManagement.vue") + }, + { + path: "/warehouseManagement/inOutManagement/outboundManagement", + name: "物料管理_出入库管理_出库管理", + component: () => + import("@/views/projectFront/warehouseManagement/inOutManagement/outboundManagement.vue") + }, diff --git a/src/views/projectFront/warehouseManagement/basicInformation/InbOutboundType.vue b/src/views/projectFront/warehouseManagement/basicInformation/InbOutboundType.vue new file mode 100644 index 00000000..28ef2417 --- /dev/null +++ b/src/views/projectFront/warehouseManagement/basicInformation/InbOutboundType.vue @@ -0,0 +1,287 @@ + + + + + \ No newline at end of file diff --git a/src/views/projectFront/warehouseManagement/basicInformation/productManagement.vue b/src/views/projectFront/warehouseManagement/basicInformation/productManagement.vue index 9b3b7982..3d46caf8 100644 --- a/src/views/projectFront/warehouseManagement/basicInformation/productManagement.vue +++ b/src/views/projectFront/warehouseManagement/basicInformation/productManagement.vue @@ -10,46 +10,41 @@ > @@ -67,54 +62,47 @@
- - - diff --git a/src/views/projectFront/warehouseManagement/basicInformation/warehouseList.vue b/src/views/projectFront/warehouseManagement/basicInformation/warehouseList.vue index 73c3ecfd..dc17851a 100644 --- a/src/views/projectFront/warehouseManagement/basicInformation/warehouseList.vue +++ b/src/views/projectFront/warehouseManagement/basicInformation/warehouseList.vue @@ -8,34 +8,25 @@ :model="searchForm" size="medium" > - + - + + + - - - - + {{ $t('message.energyManage.waybill.query') @@ -50,50 +41,39 @@
- + - + - + @@ -119,15 +99,12 @@ background >
+
@@ -139,59 +116,41 @@ label-width="120px" class="dialogFormBox" > - - - + - + - + - + - + - - +