mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 10:36:31 +08:00
commit:支持服务、接收任务,支持串行会签,修复bug
This commit is contained in:
@@ -510,6 +510,7 @@ const getTablePictureList = (tableColumn: ANY_OBJECT, row: ANY_OBJECT) => {
|
||||
}
|
||||
};
|
||||
const formatListData = (data: ANY_OBJECT) => {
|
||||
if (data == null) return;
|
||||
Object.keys(data).forEach(key => {
|
||||
let subData = data[key];
|
||||
if (typeof subData === 'object' && key.indexOf('DictMap') === -1) {
|
||||
|
||||
@@ -390,6 +390,7 @@ const getPrintParamItem = (row: ANY_OBJECT, printParamList: ANY_OBJECT[]) => {
|
||||
return param;
|
||||
};
|
||||
const formatListData = (data: ANY_OBJECT) => {
|
||||
if (data == null) return;
|
||||
Object.keys(data).forEach(key => {
|
||||
let subData = data[key];
|
||||
if (typeof subData === 'object' && key.indexOf('DictMap') === -1) {
|
||||
|
||||
Reference in New Issue
Block a user