导入运行图调整

This commit is contained in:
fan 2021-04-08 17:55:35 +08:00
parent 7532c86e15
commit c58609528a
2 changed files with 3 additions and 4 deletions

View File

@ -28,7 +28,7 @@ class EqualRatioParser {
importData(sheet, data) {
if (this.config &&
this.config.importData) {
this.config.importData(sheet, data);
return this.config.importData(sheet, data);
} else {
console.info('no import data function');
}

View File

@ -1,8 +1,8 @@
import { convertSheetToList, prefixTime } from '../parser/util';
export default {
/** 运行图解析方式*/
type: 'Ratio',
/** 运行图解析方式*/
type: 'Ratio',
/** 边缘高度*/
edge: 600,
@ -98,7 +98,6 @@ export default {
}
}
}
return JsonData;
}
};