优化空间页面;删除console.log

This commit is contained in:
yezian 2024-04-26 19:25:00 +08:00
parent efb1c866dd
commit f82ca11e6e
2 changed files with 8 additions and 3 deletions

View File

@ -77,7 +77,6 @@ export default function SetPassword() {
}
);
const data = await response.json();
console.log(data);
if (data.ret === -1) {
Toast.show({
content: data.msg,

View File

@ -140,14 +140,20 @@ export default function Zone({ params }) {
<div className="flex flex-row justify-around px-6 pt-6 z-10">
<div
className="flex flex-row items-center gap-1 cursor-pointer"
onClick={() => document.getElementById("comfirm_modal").showModal()}
onClick={() => {
copyAndSetCookieInviter();
document.getElementById("comfirm_modal").showModal();
}}
>
<Image src={tiefen} alt="" className="w-5" />
<p className="text-white text-sm font-meidum">查看更多内容</p>
</div>
<div
className="flex flex-row items-center gap-1 cursor-pointer"
onClick={() => document.getElementById("comfirm_modal").showModal()}
onClick={() => {
copyAndSetCookieInviter();
document.getElementById("comfirm_modal").showModal();
}}
>
<Image src={wechat} alt="" className="w-5" />
<p className="text-white text-sm font-meidum">解锁Ta的微信</p>