|
@@ -12,12 +12,15 @@ export default function ExchangeForm({
|
|
|
}) {
|
|
|
const [formData, setFormData] = useState({});
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
- // const [currentUser, setCurrentUser] = useState(null);
|
|
|
|
|
|
- // useEffect(() => {
|
|
|
- // const user = JSON.parse(localStorage.getItem("currentUser") || "null");
|
|
|
- // setCurrentUser(user);
|
|
|
- // }, []);
|
|
|
+ useEffect(() => {
|
|
|
+ if (currentUser && currentUser.account) {
|
|
|
+ setFormData((prevData) => ({
|
|
|
+ ...prevData,
|
|
|
+ account: currentUser.account,
|
|
|
+ }));
|
|
|
+ }
|
|
|
+ }, []);
|
|
|
|
|
|
const handleInputChange = (e) => {
|
|
|
setFormData({ ...formData, [e.target.name]: e.target.value });
|
|
@@ -45,7 +48,6 @@ export default function ExchangeForm({
|
|
|
|
|
|
console.log("params", params);
|
|
|
|
|
|
- console.log("param", params);
|
|
|
const response = await fetch("/api/exchange-history", {
|
|
|
method: "POST",
|
|
|
headers: {
|
|
@@ -65,7 +67,9 @@ export default function ExchangeForm({
|
|
|
const updatedUser = {
|
|
|
...currentUser,
|
|
|
points: currentUser.points - item.points,
|
|
|
+ account: formData.account || currentUser.account,
|
|
|
};
|
|
|
+ localStorage.setItem("currentUser", JSON.stringify(updatedUser));
|
|
|
setCurrentUser(updatedUser);
|
|
|
} else {
|
|
|
setAlert({ type: "error", message: res.error });
|
|
@@ -101,10 +105,11 @@ export default function ExchangeForm({
|
|
|
type="text"
|
|
|
id="account"
|
|
|
name="account"
|
|
|
- placeholder="请输入智博1919账号"
|
|
|
+ placeholder="请输入绿茵直播账号"
|
|
|
required
|
|
|
className="w-full border rounded px-3 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500"
|
|
|
onChange={handleInputChange}
|
|
|
+ value={formData.account || ""}
|
|
|
/>
|
|
|
</div>
|
|
|
) : (
|