-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
54 changed files
with
1,474 additions
and
385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,5 +48,8 @@ | |
"contentConf": { | ||
"opacity": 100 | ||
} | ||
}, | ||
"logicConf": { | ||
"showLogicConf": [] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/** | ||
* in:包含, 选择了,任一 | ||
* eq: 等于,选择了,全部 | ||
* nin: 不包含,不选择,任一 | ||
* neq:不等于,不选择,全部,可以实现“填写了” | ||
*/ | ||
export enum Operator { | ||
Include = 'in', | ||
Equal = 'eq', | ||
NotEqual = 'neq', | ||
NotInclude = 'nin', | ||
} | ||
|
||
|
||
export enum PrefixID { | ||
Rule = 'r', | ||
Condition = 'c' | ||
} | ||
|
||
export enum Scope { | ||
Question = 'question', | ||
Option = 'option' | ||
} | ||
|
||
|
||
export type FieldTypes = string | string[]; | ||
|
||
// 定义事实对象类型 | ||
export type Fact = { | ||
[key: string]: any; | ||
}; | ||
|
Oops, something went wrong.