const {refetch, isFetching} = useCustom({
url: `/api/products/push/${id}`,
method: 'get',
queryOptions: {
enabled: false
}
})
<Button variant={'text'} onClick={()=>refetch(id)}>推送</Button>
const {refetch, isFetching} = useCustom({
url: `/api/products/push/${id}`,
method: 'get',
queryOptions: {
enabled: false
}
})
<Button variant={'text'} onClick={()=>refetch(id)}>推送</Button>