This commit is contained in:
yehuozhili 2020-09-25 01:42:18 +08:00
parent 2ad7172ea5
commit 80b5307a27

View File

@ -49,9 +49,7 @@ const HeaderComponent = memo((props: HeaderComponentProps) => {
const content = () => { const content = () => {
const { tid } = location.query || ''; const { tid } = location.query || '';
return ( return (
<QRCode <QRCode value={`${window.location.protocol}//${window.location.host}/preview?tid=${tid}`} />
value={`${window.location.protocol}//${window.location.host}/h5_plus/preview?tid=${tid}`}
/>
); );
}; };