|
@@ -289,6 +289,7 @@ $(document).ready(function() {
|
|
|
cols: [
|
|
|
{ title: '名称', colSpan: '1', rowSpan: '1', field: 'name', hAlign: 0, width: 250, formatter: '@', readOnly: true, cellType: 'tree' },
|
|
|
{ title: '固定', colSpan: '1', rowSpan: '1', field: 'is_fixed', hAlign: 1, width: 50, cellType: 'checkbox' },
|
|
|
+ { title: '归档单位', colSpan: '1', rowSpan: '1', field: 'file_company', hAlign: 0, width: 80, formatter: '@' },
|
|
|
{ title: '提示', colSpan: '1', rowSpan: '1', field: 'tips', hAlign: 0, width: 280, formatter: '@', wordWrap: 1 },
|
|
|
],
|
|
|
emptyRows: 0,
|
|
@@ -387,7 +388,7 @@ $(document).ready(function() {
|
|
|
if (!fixedParent) throw `【${node.name}】查询不到固定信息`;
|
|
|
filing_type = fixedParent.source_filing_type;
|
|
|
}
|
|
|
- data.push({ id: node.id, is_fixed: node.is_fixed, filing_type, tree_order: i + 1, tips: node.tips || '' });
|
|
|
+ data.push({ id: node.id, is_fixed: node.is_fixed, filing_type, tree_order: i + 1, tips: node.tips || '', file_company: node.file_company || '' });
|
|
|
if (node.children) getUpdateData(node.children);
|
|
|
}
|
|
|
};
|
|
@@ -410,6 +411,7 @@ $(document).ready(function() {
|
|
|
name: node.name,
|
|
|
is_fixed: node.is_fixed,
|
|
|
filing_type: node.filing_type,
|
|
|
+ file_company: node.file_company,
|
|
|
tips: node.tips,
|
|
|
});
|
|
|
}
|
|
@@ -431,6 +433,7 @@ $(document).ready(function() {
|
|
|
name: node.name,
|
|
|
is_fixed: node.is_fixed,
|
|
|
filing_type: node.filing_type,
|
|
|
+ file_company: node.file_company,
|
|
|
tips: node.tips,
|
|
|
}});
|
|
|
const blob = new Blob([JSON.stringify(exportData, '', '')], { type: 'application/text'});
|