|
@@ -143,16 +143,10 @@ function A0Base() {
|
|
|
: `url(${require('./image/bg_floor.png')})`
|
|
: `url(${require('./image/bg_floor.png')})`
|
|
|
: isMobile()
|
|
: isMobile()
|
|
|
? `url(${require('./image/M_bg_map.png')})`
|
|
? `url(${require('./image/M_bg_map.png')})`
|
|
|
- : `url(${require('./image/bg_map.png')})`
|
|
|
|
|
|
|
+ : `none`
|
|
|
}}
|
|
}}
|
|
|
>
|
|
>
|
|
|
{isFloor && !showIntro && <Layout setIsFloor={setIsFloor} />}
|
|
{isFloor && !showIntro && <Layout setIsFloor={setIsFloor} />}
|
|
|
- {showIntro &&
|
|
|
|
|
- (isFloor ? (
|
|
|
|
|
- <Intro handleIntroClick={handleIntroClick} />
|
|
|
|
|
- ) : (
|
|
|
|
|
- <MapIntro handleIntroClick={handleIntroClick} />
|
|
|
|
|
- ))}
|
|
|
|
|
|
|
|
|
|
<Panoramic
|
|
<Panoramic
|
|
|
setIsFloor={setIsFloor}
|
|
setIsFloor={setIsFloor}
|
|
@@ -161,6 +155,13 @@ function A0Base() {
|
|
|
setIsMouseMove={setIsMouseMove}
|
|
setIsMouseMove={setIsMouseMove}
|
|
|
/>
|
|
/>
|
|
|
|
|
|
|
|
|
|
+ {showIntro &&
|
|
|
|
|
+ (isFloor ? (
|
|
|
|
|
+ <Intro handleIntroClick={handleIntroClick} />
|
|
|
|
|
+ ) : (
|
|
|
|
|
+ <MapIntro handleIntroClick={handleIntroClick} />
|
|
|
|
|
+ ))}
|
|
|
|
|
+
|
|
|
{isPreview[0] && (
|
|
{isPreview[0] && (
|
|
|
<Preview
|
|
<Preview
|
|
|
imgArr={isPreview[1] === 'baoan' ? imgArrTemp : imgArrTemp2}
|
|
imgArr={isPreview[1] === 'baoan' ? imgArrTemp : imgArrTemp2}
|