diff --git a/src/views/Jyh/Search/Components/OssQuery.vue b/src/views/Jyh/Search/Components/OssQuery.vue
index ef3e2ce..1aa5de3 100644
--- a/src/views/Jyh/Search/Components/OssQuery.vue
+++ b/src/views/Jyh/Search/Components/OssQuery.vue
@@ -108,6 +108,15 @@
{{ scope.row.version }}
+
+ {{ scope.row.securityScore }}
+
{{ formatTime(scope.row.releaseDate, 'YYYY-MM-DD') }}
diff --git a/src/views/Jyh/Version/Detail/index.vue b/src/views/Jyh/Version/Detail/index.vue
index 9968bae..962a5d5 100644
--- a/src/views/Jyh/Version/Detail/index.vue
+++ b/src/views/Jyh/Version/Detail/index.vue
@@ -15,7 +15,15 @@
- 软件评分:{{ ReleaseInfo.networkSecurity.softwareRating || ReleaseInfo.basicInfo.securityScore || '--' }}
+ 软件评分:{{ ReleaseInfo.networkSecurity.softwareRating || ReleaseInfo.basicInfo.securityScore || '--' }}
集成风险:
{{ ReleaseInfo.referenceInfo.integrationRisk || jcfxList[ReleaseInfo.basicInfo.integrationRiskLevel] || '--' }}
diff --git a/vite.config.ts b/vite.config.ts
index 8647cb0..cbb070a 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -39,7 +39,8 @@ export default (config: any) => {
proxy: {
// 配置跨域代理
'/gateway': {
- target: 'http://223.76.236.155:20011', // 目标服务器地址
+ // target: 'http://223.76.236.155:20011', // 目标服务器地址
+ target: 'http://222.20.126.217:10010', // 目标服务器地址
changeOrigin: true, // 允许跨域
rewrite: (path) => path.replace(/^\/gateway/, '/gateway'), // 重写路径
}