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 @@