update 国内标准
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import EsEnums from './EsEnum'
|
||||
|
||||
export const YesOrNoEnum = new EsEnums({
|
||||
NO: { name: '否', index: 0 },
|
||||
YES: { name: '是', index: 1 }
|
||||
NO: { name: '否', value: '0' },
|
||||
YES: { name: '是', value: '1' }
|
||||
})
|
||||
|
||||
// 既可以使用EsEnums 也可以单独写明
|
||||
@@ -35,3 +35,9 @@ export const TagsAttributeTypeEnums = {
|
||||
SELECT: { text: '下拉选择', langKey: 'system.tag.select', value: 1 },
|
||||
TREE: { text: '树形结构', langKey: 'system.tag.tree', value: 2 }
|
||||
}
|
||||
|
||||
// 标准体系树节点类型
|
||||
export const StandardSystemTreeNodeType = {
|
||||
ROOT_NODE: { text: '根节点', value: '1' },
|
||||
CHILD_NODE: { text: '子节点', value: '2' }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user