|
@@ -73,6 +73,15 @@ function getRowDiffData(curRowData, cacheRowData, headers) {
|
|
|
return item;
|
|
|
}
|
|
|
|
|
|
+function getRowAllData(curRowData, headers) {
|
|
|
+ let item = {};
|
|
|
+ headers.forEach(({ dataCode }) => {
|
|
|
+ const curValue = curRowData[dataCode];
|
|
|
+ item[dataCode] = curValue || '';
|
|
|
+ });
|
|
|
+ return item;
|
|
|
+}
|
|
|
+
|
|
|
const TIME_OUT = 1000 * 20;
|
|
|
const libID = window.location.search.match(/libID=([^&]+)/)[1];
|
|
|
|