保存设置

This commit is contained in:
al 2024-11-04 15:48:31 +08:00
parent c1eeca4e81
commit 79892672ce
3 changed files with 6 additions and 6 deletions

View File

@ -508,7 +508,7 @@ export default function CreateProfile() {
}} }}
onClick={handleSubmit} onClick={handleSubmit}
> >
保存设置 {isSubmitting ? "正在保存..." : "保存设置"}
</Button> </Button>
</div> </div>
</div> </div>

View File

@ -536,7 +536,7 @@ export default function spacePaymentSetting() {
}} }}
onClick={handleSubmit} onClick={handleSubmit}
> >
保存设置 {isSubmitting ? "正在保存..." : "保存设置"}
</Button> </Button>
</div> </div>
</div> </div>

View File

@ -140,17 +140,17 @@ export default function UploadImgs({
</div> </div>
<div <div
className="h-4 w-4 bg-[#33333380] absolute top-0 right-0 flex justify-center items-center" className="h-6 w-6 bg-[#33333380] absolute top-0 right-0 flex justify-center items-center"
onClick={() => handleRemoveItem(index)} onClick={() => handleRemoveItem(index)}
> >
<FontAwesomeIcon icon={faClose} size="sm" /> <FontAwesomeIcon icon={faClose} size="xl" />
</div> </div>
{type == 2 && ( {type == 2 && (
<div <div
className="absolute top-1/2 left-1/2 flex justify-center items-center -mt-1 -ml-1" className="absolute top-1/2 left-1/2 flex justify-center items-center -mt-2 -ml-1"
onClick={() => showPhotos(filesUrls)} onClick={() => showPhotos(filesUrls)}
> >
<FontAwesomeIcon icon={faPlay} size="sm" /> <FontAwesomeIcon icon={faPlay} size="xl" />
</div> </div>
)} )}
</div> </div>