Commit 03ccb74baf8fd11cd09933edc4b510e9536fe550

Authored by xp.Huang
2 parents ebafc985 53818391

Merge branch 'fix/report-config' into 'main_dev'

fix: 修复报表配置数据类型为原始数据时存在时间间隔字段

See merge request yunteng/thingskit-front!999
@@ -479,7 +479,8 @@ export const formSchema: BFormSchema[] = [ @@ -479,7 +479,8 @@ export const formSchema: BFormSchema[] = [
479 ]; 479 ];
480 }, 480 },
481 ifShow({ values }) { 481 ifShow({ values }) {
482 - return values[SchemaFiled.WAY] === QueryWay.TIME_PERIOD && exectueIsImmed(values.executeWay); 482 + return values[SchemaFiled.DATA_TYPE] !== DataTypeEnum.ORIGINAL;
  483 + // return values[SchemaFiled.WAY] === QueryWay.TIME_PERIOD && exectueIsImmed(values.executeWay);
483 }, 484 },
484 componentProps({ formModel, formActionType }) { 485 componentProps({ formModel, formActionType }) {
485 const options = 486 const options =