[update] 标签管理国内标准和国外标准改成外来标准;增加外来标准法规文本库模块

This commit is contained in:
lideqin
2024-06-17 16:29:02 +08:00
parent c0b2227819
commit e43bbdfc09
15 changed files with 1764 additions and 36 deletions
@@ -62,8 +62,8 @@ export default {
type: {
required: false,
type: Number,
// 默认显示国内法规的
default: TagsTypeEnums.DOMESTIC_LIST.value
// 默认显示外来标准法规的
default: TagsTypeEnums.FOREIGN_STANDARD_LIST.value
}
},
data () {
+2 -2
View File
@@ -58,8 +58,8 @@ export default {
type: {
required: false,
type: Number,
// 默认显示国内法规的
default: TagsTypeEnums.DOMESTIC_LIST.value
// 默认显示外来标准法规的
default: TagsTypeEnums.FOREIGN_STANDARD_LIST.value
}
},
components: {
+1 -2
View File
@@ -24,8 +24,7 @@ export default {
return {
spinning: false,
tabArr: [
{ name: '国内法规', showText: this.$t('system.tag.domesticLaws'), value: 1, comp: StandardList },
{ name: '海外标准', showText: this.$t('system.tag.foreignStandards'), value: 2, comp: StandardList },
{ name: '外来标准法规', showText: this.$t('system.tag.foreignStandardRegulations'), value: 1, comp: StandardList },
{ name: '企业标准', showText: this.$t('system.tag.enterpriseStandards'), value: 3, comp: StandardList },
{ name: '条款拆分', showText: this.$t('system.tag.clauseSplitting'), value: 4, comp: ClauseSplittingList }
]