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 @@