From a518a4056eadd0c84f0cc85508717d35541ade86 Mon Sep 17 00:00:00 2001 From: hrx <18603305412@163.com> Date: Wed, 15 Jul 2026 17:03:52 +0800 Subject: [PATCH] =?UTF-8?q?ncmatch=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../homePage/components/topBox/index.vue | 5 +++- .../ncmatch/supplyAndDemandSquare/index.vue | 27 +++++++------------ 2 files changed, 14 insertions(+), 18 deletions(-) diff --git a/f/web-kboss/src/views/homePage/components/topBox/index.vue b/f/web-kboss/src/views/homePage/components/topBox/index.vue index 535f2fe..7c4e5d8 100644 --- a/f/web-kboss/src/views/homePage/components/topBox/index.vue +++ b/f/web-kboss/src/views/homePage/components/topBox/index.vue @@ -338,7 +338,10 @@ export default Vue.extend({ supplySquare: isEn ? 'Supply Square' : '供需广场', // about: isEn ? 'About Us' : '关于我们' } - return this.productMenuItems.map(item => ({ ...item, label: labels[item.action] || item.action })) + const hiddenNcmatchActions = ['computeMarket', 'trainPlatform', 'agentStore'] + return this.productMenuItems + .filter(item => !this.isNcmatchDomain || !hiddenNcmatchActions.includes(item.action)) + .map(item => ({ ...item, label: labels[item.action] || item.action })) }, aiPanelStyle() { if (this.aiPanelPosition.left === null || this.aiPanelPosition.top === null) return {} diff --git a/f/web-kboss/src/views/homePage/ncmatch/supplyAndDemandSquare/index.vue b/f/web-kboss/src/views/homePage/ncmatch/supplyAndDemandSquare/index.vue index 0657871..d7807cc 100644 --- a/f/web-kboss/src/views/homePage/ncmatch/supplyAndDemandSquare/index.vue +++ b/f/web-kboss/src/views/homePage/ncmatch/supplyAndDemandSquare/index.vue @@ -152,11 +152,11 @@