|
@@ -66,7 +66,6 @@ const getDataApi = async () => {
|
|
}
|
|
}
|
|
getStoragePeriodList()
|
|
getStoragePeriodList()
|
|
getSecurityLevelList()
|
|
getSecurityLevelList()
|
|
- setHeaders()
|
|
|
|
}
|
|
}
|
|
|
|
|
|
//获取项目详情
|
|
//获取项目详情
|
|
@@ -116,17 +115,15 @@ const getContractRelation = async () => {
|
|
}
|
|
}
|
|
|
|
|
|
//获取业务字典
|
|
//获取业务字典
|
|
|
|
+const storagePeriods = ref([])
|
|
const getStoragePeriodList = async () => {
|
|
const getStoragePeriodList = async () => {
|
|
-
|
|
|
|
|
|
+ storagePeriods.value = await getDictionaryData('storage_period', true)
|
|
}
|
|
}
|
|
|
|
|
|
//获取安全等级
|
|
//获取安全等级
|
|
|
|
+const securityLevels = ref([])
|
|
const getSecurityLevelList = async () => {
|
|
const getSecurityLevelList = async () => {
|
|
-
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-const setHeaders = async () => {
|
|
|
|
-
|
|
|
|
|
|
+ securityLevels.value = await getDictionaryData('security_level', true)
|
|
}
|
|
}
|
|
|
|
|
|
//选项卡
|
|
//选项卡
|