提交 b0b86986 作者: ZhangLingKun

Merge branch 'develop'

流水线 #8463 已通过 于阶段
in 5 分 52 秒
...@@ -14,4 +14,4 @@ patches: ...@@ -14,4 +14,4 @@ patches:
images: images:
- name: REGISTRY/NAMESPACE/IMAGE:TAG - name: REGISTRY/NAMESPACE/IMAGE:TAG
newName: mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/web newName: mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/web
newTag: 1a188765b15ae711fef3b8f3f05e86ff11a06f70 newTag: e6fed7f8d28f32d81f6bb9d578724ba3dbafe82b
...@@ -55,15 +55,25 @@ const HomeTabView = () => { ...@@ -55,15 +55,25 @@ const HomeTabView = () => {
</div> </div>
<div className="tab-content"> <div className="tab-content">
{/* 产品商城 */} {/* 产品商城 */}
{currentIndex === 1 && <TabView01 />} {categoryList?.[currentIndex]?.bannerName?.includes('产品') && (
<TabView01 />
)}
{/* 行业服务 */} {/* 行业服务 */}
{currentIndex === 0 && <TabView02 />} {categoryList?.[currentIndex]?.bannerName?.includes('服务') && (
<TabView02 />
)}
{/* 设备租赁 */} {/* 设备租赁 */}
{currentIndex === 2 && <TabView03 />} {categoryList?.[currentIndex]?.bannerName?.includes('租赁') && (
<TabView03 />
)}
{/* 执照培训 */} {/* 执照培训 */}
{currentIndex === 3 && <TabView04 />} {categoryList?.[currentIndex]?.bannerName?.includes('课堂') && (
<TabView04 />
)}
{/* 飞手约单 */} {/* 飞手约单 */}
{currentIndex === 4 && <TabView05 />} {categoryList?.[currentIndex]?.bannerName?.includes('飞手') && (
<TabView05 />
)}
</div> </div>
</HomeTabWrap> </HomeTabWrap>
); );
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论