From 0b9bdc65a1d68b9d28b025140760e87a3a41e3f8 Mon Sep 17 00:00:00 2001 From: anthonywj Date: Sun, 5 Sep 2021 10:08:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/thrsys/thrCorpsImport.js | 9 + src/api/thrsys/thrInvProductsImport.js | 8 + src/api/thrsys/thrProductsImport.js | 8 + src/views/thrsys/ThrCorpsImport.vue | 29 +-- src/views/thrsys/ThrCorpsImportDetail.vue | 164 +++++++++++++++++ src/views/thrsys/ThrInvProductsImport.vue | 40 +++-- .../thrsys/ThrInvProductsImportDetail.vue | 165 ++++++++++++++++++ src/views/thrsys/ThrOrderImport.vue | 36 ++-- src/views/thrsys/ThrOrderImportDetail.vue | 161 +++++++++++++++++ src/views/thrsys/ThrProductsImport.vue | 56 ++++-- src/views/thrsys/ThrProductsImportDetail.vue | 162 +++++++++++++++++ 11 files changed, 782 insertions(+), 56 deletions(-) create mode 100644 src/views/thrsys/ThrCorpsImportDetail.vue create mode 100644 src/views/thrsys/ThrInvProductsImportDetail.vue create mode 100644 src/views/thrsys/ThrOrderImportDetail.vue create mode 100644 src/views/thrsys/ThrProductsImportDetail.vue diff --git a/src/api/thrsys/thrCorpsImport.js b/src/api/thrsys/thrCorpsImport.js index 19967ba..a4ee48f 100644 --- a/src/api/thrsys/thrCorpsImport.js +++ b/src/api/thrsys/thrCorpsImport.js @@ -8,6 +8,15 @@ export function filterLog(query) { params: query }); } + +export function filterDetail(query) { + return axios({ + url: "/udiwms/thrCorp/importLog/filterDetail", + method: "get", + params: query + }); +} + export function deleteLog(query) { return axios({ url: "/udiwms/thrCorp/importLog/deleteLog", diff --git a/src/api/thrsys/thrInvProductsImport.js b/src/api/thrsys/thrInvProductsImport.js index 97c8cfe..dbbb26d 100644 --- a/src/api/thrsys/thrInvProductsImport.js +++ b/src/api/thrsys/thrInvProductsImport.js @@ -8,6 +8,14 @@ export function filterLog(query) { params: query }); } + +export function filterDetail(query) { + return axios({ + url: "/udiwms/thrInvProducts/importLog/filterDetail", + method: "get", + params: query + }); +} export function deleteLog(query) { return axios({ url: "/udiwms/thrInvProducts/importLog/deleteLog", diff --git a/src/api/thrsys/thrProductsImport.js b/src/api/thrsys/thrProductsImport.js index 8e33c21..b9e5c39 100644 --- a/src/api/thrsys/thrProductsImport.js +++ b/src/api/thrsys/thrProductsImport.js @@ -8,6 +8,14 @@ export function filterLog(query) { params: query }); } +export function filterDetail(query) { + return axios({ + url: "/udiwms/thrProducts/importLog/filterDetail", + method: "get", + params: query + }); +} + export function deleteLog(query) { return axios({ url: "/udiwms/thrProducts/importLog/deleteLog", diff --git a/src/views/thrsys/ThrCorpsImport.vue b/src/views/thrsys/ThrCorpsImport.vue index e31ed20..8ce7260 100644 --- a/src/views/thrsys/ThrCorpsImport.vue +++ b/src/views/thrsys/ThrCorpsImport.vue @@ -95,13 +95,13 @@