【update】标签管理全部页面的组件

This commit is contained in:
fengchenchen
2023-08-17 16:25:04 +08:00
parent 478ba66284
commit b26b0ccb2d
21 changed files with 1871 additions and 548 deletions
+6 -4
View File
@@ -1,8 +1,4 @@
import EsEnums from './EsEnum'
import DomesticList from '../views/system/tags/pages/DomesticList'
import ForeignList from '../views/system/tags/pages/ForeignList'
import EnterpriseList from '../views/system/tags/pages/EnterpriseList'
import ClauseSplittingList from '../views/system/tags/pages/ClauseSplittingList'
export const YesOrNoEnum = new EsEnums({
NO: { name: '否', index: 0 },
@@ -32,3 +28,9 @@ export const TagsTypeEnums = new EsEnums({
ENTERPRISE_LIST: { text: '企业标准', langKey: 'system.tag.enterpriseStandards', value: 3 },
CLAUSE_SPLITTING_LIST: { text: '条款拆分', langKey: 'system.tag.clauseSplitting', value: 4 }
})
// 标签类型
export const TagsAttributeTypeEnums = {
SELECT: { text: '下拉选择', langKey: 'system.tag.select', value: 1 },
TREE: { text: '树形结构', langKey: 'system.tag.tree', value: 2 }
}