登录添加加载状态

This commit is contained in:
al 2024-12-04 14:23:24 +08:00
parent 5359bf0a6e
commit 4b5781959f
2 changed files with 17 additions and 7 deletions

View File

@ -35,6 +35,7 @@ function Login({ handleLogin }) {
const [activeIndex, setActiveIndex] = useState(0); const [activeIndex, setActiveIndex] = useState(0);
const [veriCode, setVeriCode] = useState(""); const [veriCode, setVeriCode] = useState("");
const [isCounting, setIsCounting] = useState(false); const [isCounting, setIsCounting] = useState(false);
const [isLoading, setIsLoading] = useState(false);
const [seconds, setSeconds] = useState(60); const [seconds, setSeconds] = useState(60);
const [deviceType, setDeviceType] = useState(""); const [deviceType, setDeviceType] = useState("");
const [loginInfo, setLoginInfo] = useState({ const [loginInfo, setLoginInfo] = useState({
@ -145,6 +146,7 @@ function Login({ handleLogin }) {
...body, ...body,
veri_code: veriCode, veri_code: veriCode,
}; };
setIsLoading(true);
try { try {
const data = await requireAPI( const data = await requireAPI(
"POST", "POST",
@ -155,7 +157,9 @@ function Login({ handleLogin }) {
body, body,
} }
); );
if (data.ret === -1) { if (data.ret === -1) {
setIsLoading(false);
Toast.show({ Toast.show({
icon: "fail", icon: "fail",
content: data.msg, content: data.msg,
@ -172,12 +176,14 @@ function Login({ handleLogin }) {
} else { } else {
save("firstLogin", 0); save("firstLogin", 0);
} }
setIsLoading(false);
router.push( router.push(
!data?.data?.is_enabled && type != "password" !data?.data?.is_enabled && type != "password"
? "/my/setting/editPassword?is_enabled=" + data?.data?.is_enabled ? "/my/setting/editPassword?is_enabled=" + data?.data?.is_enabled
: "/" : "/"
); );
} catch (error) { } catch (error) {
setIsLoading(false);
// console.error(error); // console.error(error);
} }
}; };
@ -437,6 +443,7 @@ function Login({ handleLogin }) {
</span> </span>
</div> </div>
<LoginBtn <LoginBtn
isLoading={isLoading}
loginInfo={loginInfo} loginInfo={loginInfo}
setLoginInfo={setLoginInfo} setLoginInfo={setLoginInfo}
handleSubmit={handleSubmit} handleSubmit={handleSubmit}
@ -450,7 +457,13 @@ function Login({ handleLogin }) {
); );
} }
const LoginBtn = ({ loginInfo, setLoginInfo, type, handleSubmit }) => { const LoginBtn = ({
loginInfo,
setLoginInfo,
type,
handleSubmit,
isLoading,
}) => {
const router = useRouter(); const router = useRouter();
useEffect(() => {}, []); useEffect(() => {}, []);
return ( return (
@ -493,6 +506,7 @@ const LoginBtn = ({ loginInfo, setLoginInfo, type, handleSubmit }) => {
<Button <Button
shape="rounded" shape="rounded"
size="middle" size="middle"
loading={isLoading}
block block
onClick={() => handleSubmit(type)} onClick={() => handleSubmit(type)}
style={{ style={{

View File

@ -8,7 +8,6 @@ export default function AlreadyAddWechat({ zid, currentIndex }) {
const [offset, setOffset] = useState(0); const [offset, setOffset] = useState(0);
const [more, setMore] = useState(1); const [more, setMore] = useState(1);
const [data, setData] = useState([]); const [data, setData] = useState([]);
const [modalVisible, setModalVisible] = useState(false);
const getData = async () => { const getData = async () => {
if (zid === undefined || !more || currentIndex != 0) return; if (zid === undefined || !more || currentIndex != 0) return;
try { try {
@ -85,13 +84,9 @@ export default function AlreadyAddWechat({ zid, currentIndex }) {
</div> </div>
<div <div
onClick={() => { onClick={() => {
setModalVisible(!modalVisible);
Modal.show({ Modal.show({
content: ( content: (
<div <div className="flex-1 justify-center items-center bg-[#000000]">
onClick={() => setModalVisible(false)}
className="flex-1 justify-center items-center bg-[#00000080]"
>
<div className="p-4 rounded-2xl bg-[#1E1C29] items-center"> <div className="p-4 rounded-2xl bg-[#1E1C29] items-center">
{item.consumer_wechat ? ( {item.consumer_wechat ? (
<div className="flex flex-col w-full"> <div className="flex flex-col w-full">
@ -180,6 +175,7 @@ export default function AlreadyAddWechat({ zid, currentIndex }) {
</div> </div>
</div> </div>
), ),
destroyOnHide: true,
closeOnMaskClick: true, closeOnMaskClick: true,
bodyStyle: { bodyStyle: {
background: "none", background: "none",