优化空间页面;删除console.log
This commit is contained in:
parent
efb1c866dd
commit
f82ca11e6e
|
@ -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,
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue