From cb36348019d3b7485d4e6b16ea402ebc614561ff Mon Sep 17 00:00:00 2001 From: ourfor Date: Mon, 30 Dec 2019 08:59:18 +0800 Subject: [PATCH] :bento: add new pay method --- client/src/components/pay/pay.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/components/pay/pay.jsx b/client/src/components/pay/pay.jsx index 0fd5796..d0b5766 100644 --- a/client/src/components/pay/pay.jsx +++ b/client/src/components/pay/pay.jsx @@ -8,6 +8,7 @@ import { useState, useEffect } from 'react' const items = [ QRCodeImg, + () =>
即将支持
, GiftCode, PayWithLogin, ] @@ -15,7 +16,7 @@ const items = [ export default function PayBox({amount=0.01}) { let [active,setActive] = useState(0) - const list = ['扫码支付','兑换码','其他方式'] + const list = ['扫码支付','银联支付','兑换码','其他方式'] const click = i => { setActive(i) }