From 03ac334c1d1f3ba739c1b76b758b2bded80d7230 Mon Sep 17 00:00:00 2001 From: anthonywj Date: Wed, 21 Jun 2023 22:32:29 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B8=89=E6=96=B9=E4=BA=A7=E5=93=81?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 1 - src/api/thrsys/thrProducts.js | 58 +++-- src/views/thirdSys/product/thrProducts.vue | 70 ++++-- .../thirdSys/product/thrProductsEdit.vue | 221 ++++++++++++++++++ 4 files changed, 306 insertions(+), 44 deletions(-) create mode 100644 src/views/thirdSys/product/thrProductsEdit.vue diff --git a/.env.production b/.env.production index d22932e..81573f8 100644 --- a/.env.production +++ b/.env.production @@ -6,7 +6,6 @@ ENV = 'production' # VUE_APP_BASE_API = 'http://116.204.71.86:9150/UDI_WMS_MC/' #林纪裕 -# VUE_APP_BASE_API = 'http://101.43.77.55:9150/UDI_SPMS_SERVER/' VUE_APP_BASE_API = 'http://r.jiyuudims.cloud:82/UDI_SPMS_SERVER/' # VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_SPMS_SERVER/' diff --git a/src/api/thrsys/thrProducts.js b/src/api/thrsys/thrProducts.js index 4a570a1..4317e2f 100644 --- a/src/api/thrsys/thrProducts.js +++ b/src/api/thrsys/thrProducts.js @@ -1,42 +1,50 @@ import axios from "@/utils/request"; export function getThrProducts(query) { - return axios({ - url: "/udiwms/thrsys/getThrProducts", - method: "get", - params: query - }); + return axios({ + url: "/udiwms/thrsys/getThrProducts", + method: "get", + params: query + }); } export function delThrProducts(query) { - return axios({ - url: "/udiwms/thrsys/delThrProducts", - method: "post", - data: query - }); + return axios({ + url: "/udiwms/thrsys/delThrProducts", + method: "post", + data: query + }); } export function downloadAll(query) { - return axios({ - url: "/udiwms/thrsys/products/downloadAll", - method: "get", - params: query - }); + return axios({ + url: "/udiwms/thrsys/products/downloadAll", + method: "get", + params: query + }); } export function productsDlAll(query) { - return axios({ - url: "/udiwms/thrsys/products/productsDlAll", - method: "post", - data: query - }); + return axios({ + url: "/udiwms/thrsys/products/productsDlAll", + method: "post", + data: query + }); } export function saveNewProduct(data) { - return axios({ - url: '/udiwms/udiinfo/erp/products/saveProduct', - method: 'post', - data: data - }) + return axios({ + url: '/udiwms/udiinfo/erp/products/saveProduct', + method: 'post', + data: data + }) +} + +export function updateProduct(data) { + return axios({ + url: '/udiwms/udiinfo/erp/products/update', + method: 'post', + data: data + }) } diff --git a/src/views/thirdSys/product/thrProducts.vue b/src/views/thirdSys/product/thrProducts.vue index 1b6cca7..7047a67 100644 --- a/src/views/thirdSys/product/thrProducts.vue +++ b/src/views/thirdSys/product/thrProducts.vue @@ -5,7 +5,8 @@ - + @@ -22,7 +23,8 @@ - + @@ -48,14 +50,16 @@ -
- - 显示/隐藏搜索栏 - 重置 - 查询 - 新增 - -
+
+ + 显示/隐藏搜索栏 + 重置 + 查询 + 新增 + + +
@@ -70,7 +74,9 @@ @@ -112,21 +118,40 @@ class="dialog-two" top="5vh" > - + + + + + + +