|
@@ -5,7 +5,6 @@ import classNames from 'classnames'
|
|
|
import Hot2 from '../A2visit/PanoVideo/Hot2'
|
|
|
import EndVideo from '@/components/EndVideo'
|
|
|
import BaseImg from '@/components/BaseImg'
|
|
|
-import HotIcon from '@/components/HotIcon'
|
|
|
import FloorBtn from '@/components/FloorBtn'
|
|
|
import NextPage from '@/components/NextPage'
|
|
|
import useLoding from '@/components/ownUse/useLoding'
|
|
@@ -76,29 +75,29 @@ function A4dance() {
|
|
|
)}
|
|
|
>
|
|
|
{/* 热点图标 云气图为第一个*/}
|
|
|
- {myData.dance.hot.map((item, index) =>
|
|
|
- item.name === '汉代乐舞百戏' ? (
|
|
|
- <div
|
|
|
- onClick={() => hotShowFu(1)}
|
|
|
- key={index}
|
|
|
- className='A4leftBtn'
|
|
|
- style={{ backgroundImage: `url(${baseURL}chef/chuBtn.png)` }}
|
|
|
- >
|
|
|
- 汉代乐舞百戏
|
|
|
- </div>
|
|
|
- ) : (
|
|
|
- <HotIcon
|
|
|
- style={{
|
|
|
- top: item.locPage.top,
|
|
|
- left: item.locPage.left
|
|
|
- }}
|
|
|
- key={index}
|
|
|
- index={index}
|
|
|
- clickSon={val => hotShowFu(val)}
|
|
|
- hoverSrc={item.hoverSrc}
|
|
|
- isZhan={true}
|
|
|
- />
|
|
|
- )
|
|
|
+ {myData.dance.hot.map(
|
|
|
+ (item, index) =>
|
|
|
+ item.name === '汉代乐舞百戏' ? (
|
|
|
+ <div
|
|
|
+ onClick={() => hotShowFu(1)}
|
|
|
+ key={index}
|
|
|
+ className='A4leftBtn'
|
|
|
+ style={{ backgroundImage: `url(${baseURL}chef/chuBtn.png)` }}
|
|
|
+ >
|
|
|
+ 汉代乐舞百戏
|
|
|
+ </div>
|
|
|
+ ) : null
|
|
|
+ // <HotIcon
|
|
|
+ // style={{
|
|
|
+ // top: item.locPage.top,
|
|
|
+ // left: item.locPage.left
|
|
|
+ // }}
|
|
|
+ // key={index}
|
|
|
+ // index={index}
|
|
|
+ // clickSon={val => hotShowFu(val)}
|
|
|
+ // hoverSrc={item.hoverSrc}
|
|
|
+ // isZhan={true}
|
|
|
+ // />
|
|
|
)}
|
|
|
|
|
|
{/* 底部 */}
|