|
@@ -1,6 +1,6 @@
|
|
import React from 'react'
|
|
import React from 'react'
|
|
import styles from './index.module.scss'
|
|
import styles from './index.module.scss'
|
|
-import { baseURL, myData } from '@/utils/history'
|
|
|
|
|
|
+import { baseURL } from '@/utils/history'
|
|
import { ZhuanObj } from '@/types'
|
|
import { ZhuanObj } from '@/types'
|
|
|
|
|
|
type Props = {
|
|
type Props = {
|
|
@@ -10,11 +10,7 @@ type Props = {
|
|
|
|
|
|
function A4look({ info, closeFu }: Props) {
|
|
function A4look({ info, closeFu }: Props) {
|
|
return (
|
|
return (
|
|
- <div
|
|
|
|
- id='LookGood'
|
|
|
|
- className={styles.A4look}
|
|
|
|
- style={{ backgroundImage: `url(${baseURL + myData.expert.bg})` }}
|
|
|
|
- >
|
|
|
|
|
|
+ <div id='LookGood' className={styles.A4look}>
|
|
{/* 关闭按钮 */}
|
|
{/* 关闭按钮 */}
|
|
<img onClick={closeFu} className='Lcolse' src={baseURL + 'goods/close.png'} alt='' />
|
|
<img onClick={closeFu} className='Lcolse' src={baseURL + 'goods/close.png'} alt='' />
|
|
|
|
|