|
|
@@ -50,7 +50,7 @@ const PricingTopSection = ({
|
|
|
onCompositionEnd={handleCompositionEnd}
|
|
|
onChange={handleChange}
|
|
|
showClear
|
|
|
- className="!bg-transparent"
|
|
|
+ style={{ backgroundColor: 'transparent' }}
|
|
|
/>
|
|
|
</div>
|
|
|
|
|
|
@@ -82,14 +82,16 @@ const PricingTopSection = ({
|
|
|
|
|
|
return (
|
|
|
<>
|
|
|
- {/* 供应商介绍区域(含骨架屏) */}
|
|
|
- <PricingVendorIntroWithSkeleton
|
|
|
- loading={loading}
|
|
|
- filterVendor={filterVendor}
|
|
|
- models={filteredModels}
|
|
|
- allModels={models}
|
|
|
- t={t}
|
|
|
- />
|
|
|
+ {/* 供应商介绍区域(桌面端显示) */}
|
|
|
+ {!isMobile && (
|
|
|
+ <PricingVendorIntroWithSkeleton
|
|
|
+ loading={loading}
|
|
|
+ filterVendor={filterVendor}
|
|
|
+ models={filteredModels}
|
|
|
+ allModels={models}
|
|
|
+ t={t}
|
|
|
+ />
|
|
|
+ )}
|
|
|
|
|
|
{/* 搜索和操作区域 */}
|
|
|
{SearchAndActions}
|