一些issue修改
This commit is contained in:
@@ -23,7 +23,8 @@
|
||||
</d-col>
|
||||
<d-col :span="8">
|
||||
<span class="card-key width-90">发布时间</span>
|
||||
<span class="card-val">{{ ReleaseInfo.basicInfo.releaseDate || '--' }}</span>
|
||||
<span class="card-val">
|
||||
{{ ReleaseInfo.basicInfo.releaseDate?dayjs(ReleaseInfo.basicInfo.releaseDate).format('YYYY-MM-DD HH:mm:ss') :'--' }}</span>
|
||||
</d-col>
|
||||
<d-col :span="8">
|
||||
<span class="card-key width-90">版本描述</span>
|
||||
@@ -37,7 +38,7 @@
|
||||
<d-row class="mb-3">
|
||||
<d-col :span="8">
|
||||
<span class="card-key width-110">集成风险</span>
|
||||
<d-tag color="#F6933B">{{ jcfxList[ReleaseInfo.referenceInfo.integrationRisk || ReleaseInfo.basicInfo.integrationRiskLevel] || '--' }}</d-tag>
|
||||
<d-tag color="#F6933B">{{ ReleaseInfo.referenceInfo.integrationRisk || jcfxList[ReleaseInfo.basicInfo.integrationRiskLevel] || '--' }}</d-tag>
|
||||
<!-- <span class="card-val">{{ ReleaseInfo.referenceInfo.integrationRisk || ReleaseInfo.basicInfo.integrationRisk || '--' }}</span>-->
|
||||
</d-col>
|
||||
<d-col :span="8">
|
||||
@@ -54,7 +55,8 @@
|
||||
<d-row class="mb-3">
|
||||
<d-col :span="8">
|
||||
<span class="card-key width-110">社区EOL日期</span>
|
||||
<span class="card-val">{{ ReleaseInfo.referenceInfo.communityEolDate || '--' }}</span>
|
||||
<span class="card-val">
|
||||
{{ ReleaseInfo.referenceInfo.communityEolDate?dayjs(ReleaseInfo.referenceInfo.communityEolDate).format('YYYY-MM-DD HH:mm:ss') :'--' }}</span>
|
||||
</d-col>
|
||||
<d-col :span="8">
|
||||
<span class="card-key width-110">所属领域/产业</span>
|
||||
@@ -231,6 +233,7 @@ import { Message } from 'vue-devui/message';
|
||||
import { useClipboard } from '@vueuse/core/index';
|
||||
import { releaseInfo } from '@/api/jyh';
|
||||
import { useGlobalInfoStore } from '@/stores/Global';
|
||||
import dayjs from 'dayjs';
|
||||
const route = useRoute();
|
||||
const emits = defineEmits(['changeTabs']);
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<span class="span1">软件评分:</span><span class="span2">{{ ReleaseInfo.networkSecurity.softwareRating || ReleaseInfo.basicInfo.securityScore || '--' }}</span>
|
||||
<span class="split"></span>
|
||||
<span class="span1">集成风险:</span>
|
||||
<d-tag color="#F6933B">{{ jcfxList[ReleaseInfo.referenceInfo.integrationRisk || ReleaseInfo.basicInfo.integrationRiskLevel] || '--' }}</d-tag>
|
||||
<d-tag color="#F6933B">{{ ReleaseInfo.referenceInfo.integrationRisk || jcfxList[ReleaseInfo.basicInfo.integrationRiskLevel] || '--' }}</d-tag>
|
||||
<!-- <d-tag color="#F6933B">{{ ReleaseInfo.referenceInfo.integrationRisk || '--' }}</d-tag>-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user