支付宝渠道改为维护中
This commit is contained in:
parent
cee1058e55
commit
367150b53b
|
@ -9,6 +9,12 @@ import webviewBaseRequest from "@/utils/webviewBaseRequest";
|
|||
export default function Pay() {
|
||||
const router = useRouter();
|
||||
|
||||
const alipayBlock = () => {
|
||||
Toast.show({
|
||||
content: "支付渠道维护升级中,请24小时后再试",
|
||||
});
|
||||
};
|
||||
|
||||
//商品列表
|
||||
const [productList, setProductList] = useState([]);
|
||||
|
||||
|
@ -275,7 +281,8 @@ export default function Pay() {
|
|||
<div className="flex mt-auto mb-12">
|
||||
<div className="basis-1/2 px-2">
|
||||
<button
|
||||
onClick={() => createOrder("alipay_h5")}
|
||||
// onClick={() => createOrder("alipay_h5")}
|
||||
onClick={alipayBlock}
|
||||
className="flex flex-row h-12 w-full items-center justify-center bg-primary rounded-full py-2"
|
||||
>
|
||||
<svg viewBox="0 0 1024 1024" width="18" height="18">
|
||||
|
@ -284,7 +291,9 @@ export default function Pay() {
|
|||
fill="#FFFFFF"
|
||||
></path>
|
||||
</svg>
|
||||
<p className="text-white text-base ml-1">支付宝支付</p>
|
||||
<p className="text-white text-base ml-1">
|
||||
支付宝<span className="text-xs">(维护中)</span>
|
||||
</p>
|
||||
</button>
|
||||
</div>
|
||||
<div className="basis-1/2 px-2">
|
||||
|
|
|
@ -20,6 +20,13 @@ import { useRouter } from "next/navigation";
|
|||
|
||||
export default function Vip() {
|
||||
const router = useRouter();
|
||||
|
||||
const alipayBlock = () => {
|
||||
Toast.show({
|
||||
content: "支付渠道维护升级中,请24小时后再试",
|
||||
});
|
||||
};
|
||||
|
||||
//检查用户是否是vip
|
||||
const [isVip, setIsVip] = useState(false);
|
||||
const [name, setName] = useState("");
|
||||
|
@ -135,13 +142,13 @@ export default function Vip() {
|
|||
}
|
||||
};
|
||||
|
||||
if (isFetching) {
|
||||
return (
|
||||
<section className="flex flex-1 justify-center container">
|
||||
<span className="absolute top-1/2 loading loading-spinner loading-lg"></span>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
// if (isFetching) {
|
||||
// return (
|
||||
// <section className="flex flex-1 justify-center container">
|
||||
// <span className="absolute top-1/2 loading loading-spinner loading-lg"></span>
|
||||
// </section>
|
||||
// );
|
||||
// }
|
||||
|
||||
return (
|
||||
<section className="flex flex-1 justify-center container">
|
||||
|
@ -242,12 +249,13 @@ export default function Vip() {
|
|||
<div className="flex flex-row justify-between">
|
||||
<div className="basis-1/2 pr-2">
|
||||
<div
|
||||
onClick={() => createOrder("alipay_h5")}
|
||||
// onClick={() => createOrder("alipay_h5")}
|
||||
onClick={alipayBlock}
|
||||
className="flex flex-row cursor-pointer gap-1.5 h-11 items-center justify-center bg-primary rounded-full"
|
||||
>
|
||||
<Image src={alipay} width={22} alt="" />
|
||||
<p className="text-white text-base font-medium whitespace-nowrap">
|
||||
支付宝支付
|
||||
支付宝<span className="text-xs">(维护中)</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue