mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-25 02:56:38 +00:00
optimize
This commit is contained in:
parent
7aac699184
commit
713ac78653
1 changed files with 23 additions and 13 deletions
|
|
@ -30,7 +30,7 @@ function QrCodeContent({ qrcode }: { qrcode: string }) {
|
|||
style={{
|
||||
display: "flex",
|
||||
justifyContent: "center",
|
||||
flexDirection: "column",
|
||||
// flexDirection: "column",
|
||||
textAlign: "center",
|
||||
}}
|
||||
>
|
||||
|
|
@ -43,7 +43,7 @@ function QrCodeContent({ qrcode }: { qrcode: string }) {
|
|||
<div
|
||||
style={{
|
||||
textAlign: "center",
|
||||
width: "90px",
|
||||
width: "120px",
|
||||
display: "flex",
|
||||
justifyContent: "center",
|
||||
}}
|
||||
|
|
@ -51,7 +51,16 @@ function QrCodeContent({ qrcode }: { qrcode: string }) {
|
|||
<Input readOnly={true} value="906370401" />
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
display: "flex",
|
||||
justifyContent: "center",
|
||||
}}
|
||||
>
|
||||
<Button
|
||||
style={{
|
||||
maxWidth: "320px",
|
||||
}}
|
||||
onClick={() => {
|
||||
const inputElement = document.querySelector(
|
||||
"input[value=\"906370401\"]",
|
||||
|
|
@ -65,6 +74,7 @@ function QrCodeContent({ qrcode }: { qrcode: string }) {
|
|||
复制到剪切板
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue