|
|
@@ -17,7 +17,6 @@ function A5win({ id, closeFu }: Props) {
|
|
|
|
|
|
const txtArr = useMemo(() => {
|
|
|
let arr: any[] = []
|
|
|
-
|
|
|
if (info.id) {
|
|
|
const obj = info.obj
|
|
|
for (const k in obj) {
|
|
|
@@ -37,7 +36,8 @@ function A5win({ id, closeFu }: Props) {
|
|
|
<h3>{info.name}</h3>
|
|
|
{txtArr.map(item => (
|
|
|
<div className='A5Mrow' key={item.name}>
|
|
|
- <div>{item.name}:</div>
|
|
|
+ {item.name.includes('&空') ? null : <div>{item.name}:</div>}
|
|
|
+
|
|
|
<p>{item.txt}</p>
|
|
|
</div>
|
|
|
))}
|
|
|
@@ -45,11 +45,14 @@ function A5win({ id, closeFu }: Props) {
|
|
|
<img className='A5Mtu' src={`${baseOssUrl}modelSS/img/${info.img}`} alt='' />
|
|
|
|
|
|
<div className='A5Mbtn'>
|
|
|
- <img
|
|
|
- src={require('@/assets/three/icG.png')}
|
|
|
- alt=''
|
|
|
- onClick={() => history.replace(`/view/atlas?id=${info.id}`)}
|
|
|
- />
|
|
|
+ {info.son && info.son.length ? (
|
|
|
+ <img
|
|
|
+ src={require('@/assets/three/icG.png')}
|
|
|
+ alt=''
|
|
|
+ onClick={() => history.replace(`/view/atlas?id=${info.id}`)}
|
|
|
+ />
|
|
|
+ ) : null}
|
|
|
+
|
|
|
<img src={require('@/assets/three/icX.png')} alt='' onClick={closeFu} />
|
|
|
<img
|
|
|
src={require('@/assets/three/icM.png')}
|