|
|
@@ -1,4 +1,4 @@
|
|
|
-import React, { useMemo, useState } from 'react'
|
|
|
+import React, { useCallback, useMemo, useState } from 'react'
|
|
|
import styles from './index.module.scss'
|
|
|
import { Button } from 'antd'
|
|
|
import MyTable from '@/components/MyTable'
|
|
|
@@ -61,6 +61,12 @@ function SonGoodsList({ fileUpInfo }: Props) {
|
|
|
]
|
|
|
}, [delSnapIdsRef, isLook, setSnapsFu, snaps])
|
|
|
|
|
|
+ // 从征集线索中添加
|
|
|
+ const [clueArr, setClueArr] = useState<GoodsType[]>([])
|
|
|
+ const getClueArrFu = useCallback(async () => {
|
|
|
+ // const res
|
|
|
+ }, [])
|
|
|
+
|
|
|
return (
|
|
|
<div className={styles.SonGoodsList}>
|
|
|
<div className='EdTit'>
|