From 744ef12f241a841b4e893e60c2df8e52b2e0f2a3 Mon Sep 17 00:00:00 2001 From: anthonywj Date: Mon, 16 Oct 2023 14:50:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9A=E9=87=8F=E7=9B=B8=E5=85=B3=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.production | 4 +- src/api/basic/udiRlSuptRelevance.js | 81 +-- src/api/system/InvRationSet.js | 45 ++ src/assets/styles/ruoyi.scss | 7 + .../basic/busType/bussinessTypeModify.vue | 17 +- src/views/inout/PanelCreateOrderCodes.vue | 6 + .../purApply/purOrderSelectProduct.vue | 134 +++-- src/views/system/ration/InvRationSet.vue | 538 ++++++++++++++++++ .../system/ration/editRaationSetDialog.vue | 474 +++++++++++++++ 10 files changed, 1223 insertions(+), 85 deletions(-) create mode 100644 src/api/system/InvRationSet.js create mode 100644 src/views/system/ration/InvRationSet.vue create mode 100644 src/views/system/ration/editRaationSetDialog.vue diff --git a/.env.development b/.env.development index c36d00d3..eed92e7d 100644 --- a/.env.development +++ b/.env.development @@ -5,7 +5,7 @@ VUE_APP_TITLE = UDI管理系统 ENV = 'development' # 开发环境 -VUE_APP_BASE_API = 'http://192.168.0.166:9991' +VUE_APP_BASE_API = 'http://127.0.0.1:9991' VUE_APP_SYNC_API ="http://127.0.0.1:10001" diff --git a/.env.production b/.env.production index 0cf919a2..de1ab952 100644 --- a/.env.production +++ b/.env.production @@ -9,7 +9,7 @@ ENV = 'production' #林纪裕cd # VUE_APP_BASE_API = 'http://www.linjiyu.lol:81/UDI_WMS_MC/' -# VUE_APP_BASE_API = 'http://www.linjiyu.lol:83/UDI_WMS_MC/' +VUE_APP_BASE_API = 'http://www.linjiyu.lol:83/UDI_WMS_MC/' # VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_WMS_MC/' @@ -27,7 +27,7 @@ ENV = 'production' # VUE_APP_BASE_API = 'http://192.168.0.61:9150/UDI_WMS_MC/' 刘恩典 -VUE_APP_BASE_API = 'http://192.168.0.242:9150/UDI_WMS_MC/' +# VUE_APP_BASE_API = 'http://192.168.0.242:9150/UDI_WMS_MC/' # 平潭正式 # VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/' diff --git a/src/api/basic/udiRlSuptRelevance.js b/src/api/basic/udiRlSuptRelevance.js index 4bfc7b4b..84b3b3bc 100644 --- a/src/api/basic/udiRlSuptRelevance.js +++ b/src/api/basic/udiRlSuptRelevance.js @@ -1,54 +1,65 @@ import axios from "@/utils/request"; export function filterCompanyProductRelevance(query) { - return axios( - { - url: "/sale/info/company/product/relevance/filter", - method: "get", - params: query - } - ) + return axios( + { + url: "/sale/info/company/product/relevance/filter", + method: "get", + params: query + } + ) } export function filterCompanyProductplanRelevance(query) { - return axios( - { - url: "/sale/info/company/product/plan/relevance/filter", - method: "get", - params: query - } - ) + return axios( + { + url: "/sale/info/company/product/plan/relevance/filter", + method: "get", + params: query + } + ) } +export function filterCompanyProductRationRelevance(query) { + return axios( + { + url: "/company/product/plan/rationSet/filter", + method: "get", + params: query + } + ) +} + + export function insertFilter(query) { - return axios( - { - url: "/sale/info/insertFilter", - method: "post", - data: query - } - ); + return axios( + { + url: "/sale/info/insertFilter", + method: "post", + data: query + } + ); } export function insertCompanyProductRelevance(query) { - return axios( - { - url: "/sale/info/insertCompanyProductRelevance", - method: "post", - data: query - } - ); + return axios( + { + url: "/sale/info/insertCompanyProductRelevance", + method: "post", + data: query + } + ); } export function deleteCompanyProductRelevance(query) { - return axios( - { - url: "/sale/info/deleteCompanyProductRelevance", - method: "post", - data: query - } - ); + return axios( + { + url: "/sale/info/deleteCompanyProductRelevance", + method: "post", + data: query + } + ); } diff --git a/src/api/system/InvRationSet.js b/src/api/system/InvRationSet.js new file mode 100644 index 00000000..53c7b776 --- /dev/null +++ b/src/api/system/InvRationSet.js @@ -0,0 +1,45 @@ +import axios from "@/utils/request"; + + +export function getSetList(params) { + return axios({ + url: "/udiwms/inv/project/ration/filter", + method: "get", + params: params + }); +} + +export function addSet(data) { + return axios({ + url: "/udiwms/inv/project/ration/add", + method: "post", + data: data + }); +} + + +export function updateSet(data) { + return axios({ + url: "/udiwms/inv/project/ration/edit", + method: "post", + data: data + }); +} + + +export function deleteSet(data) { + return axios({ + url: "/udiwms/inv/project/ration/remove", + method: "post", + data: data + }); +} + +export function genOrder(data) { + return axios({ + url: "/udiwms/inv/project/ration/genOrder", + method: "post", + data: data + }); +} + diff --git a/src/assets/styles/ruoyi.scss b/src/assets/styles/ruoyi.scss index 3ee86d32..fb282335 100644 --- a/src/assets/styles/ruoyi.scss +++ b/src/assets/styles/ruoyi.scss @@ -360,5 +360,12 @@ padding:0px!important; } +.order-el-row { + display: flex; + flex-wrap: wrap; + width: 100%; + margin-top: -10px +} + diff --git a/src/views/basic/busType/bussinessTypeModify.vue b/src/views/basic/busType/bussinessTypeModify.vue index c34b32d1..396043fc 100644 --- a/src/views/basic/busType/bussinessTypeModify.vue +++ b/src/views/basic/busType/bussinessTypeModify.vue @@ -563,6 +563,7 @@ + @@ -604,7 +605,7 @@ - + @@ -627,7 +628,7 @@ - + @@ -650,7 +651,7 @@ - + @@ -673,7 +674,7 @@ - + @@ -696,7 +697,7 @@ - + @@ -718,7 +719,7 @@ - + @@ -741,7 +742,7 @@ - + @@ -763,6 +764,7 @@ + @@ -784,6 +786,7 @@ + diff --git a/src/views/inout/PanelCreateOrderCodes.vue b/src/views/inout/PanelCreateOrderCodes.vue index 00510b12..e0868b7b 100644 --- a/src/views/inout/PanelCreateOrderCodes.vue +++ b/src/views/inout/PanelCreateOrderCodes.vue @@ -33,6 +33,12 @@ width="120" show-overflow-tooltip > + - -
显示/隐藏搜索栏 @@ -100,32 +98,27 @@ - - - - - - - - - - - - + + + + + + + + :label="productRemarkSet.remarkTitle1" prop="basicPrductRemak1" width="140" + show-overflow-tooltip> + :label="productRemarkSet.remarkTitle2" prop="basicPrductRemak2" width="140" + show-overflow-tooltip> - + @@ -175,11 +168,16 @@ + + + diff --git a/src/views/system/ration/editRaationSetDialog.vue b/src/views/system/ration/editRaationSetDialog.vue new file mode 100644 index 00000000..cb7c9e7d --- /dev/null +++ b/src/views/system/ration/editRaationSetDialog.vue @@ -0,0 +1,474 @@ + + + + +