diff --git a/src/api/warehouse/labelTransactionLog.js b/src/api/warehouse/labelTransactionLog.js new file mode 100644 index 0000000..9fe1d29 --- /dev/null +++ b/src/api/warehouse/labelTransactionLog.js @@ -0,0 +1,25 @@ +import http from '@/utils/httpRequest' + +/** + * 查询标签变动记录列表 + */ +export function labelTransactionLogList(data) { + return http({ + url: http.adornUrl('/warehouse/labelTransactionLog/list'), + method: 'post', + data: http.adornData(data) + }) +} + +/** + * 导出标签变动记录 + */ +export function labelTransactionLogExport(data) { + return http({ + url: http.adornUrl('/warehouse/labelTransactionLog/export'), + method: 'post', + data: http.adornData(data), + responseType: 'blob' + }) +} + diff --git a/src/views/modules/warehouse/labelTransactionLog.vue b/src/views/modules/warehouse/labelTransactionLog.vue new file mode 100644 index 0000000..164b5d6 --- /dev/null +++ b/src/views/modules/warehouse/labelTransactionLog.vue @@ -0,0 +1,305 @@ + + + + + +