tiefen_space_h5/app/webView/[src]/page.js

35 lines
1003 B
JavaScript

"use client";
import React from "react";
import { useRouter, useParams } from "next/navigation";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faAngleLeft } from "@fortawesome/free-solid-svg-icons";
export default function PersonSpace() {
const { src } = useParams();
const router = useRouter();
return (
<div>
<div className="p-4 fixed top-0 z-10 w-full">
<div className="w-9 h-9 flex items-center justify-center rounded-full absolute">
<FontAwesomeIcon
icon={faAngleLeft}
size="xl"
onClick={() => {
router.back();
}}
/>
</div>
<p className="text-base text-center leading-9"></p>
</div>
{/* 内容 */}
<div className="mt-12">
<iframe
src={`${process.env.NEXT_PUBLIC_WEB_URL}` + decodeURIComponent(src)}
className="w-full"
style={{height:"calc(100vh - 4.5rem)"}}
/>
</div>
</div>
);
}