This commit is contained in:
parent
c0558bca36
commit
9b43cde6b6
|
@ -38,7 +38,7 @@ export default function Pay({ params }) {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
const temData = await response.json();
|
const temData = await response.json();
|
||||||
console.log(temData);
|
console.log(temData, JSON.stringify(body));
|
||||||
if (temData.ret === -1) {
|
if (temData.ret === -1) {
|
||||||
Toast.show({
|
Toast.show({
|
||||||
content: temData.msg,
|
content: temData.msg,
|
||||||
|
@ -71,7 +71,7 @@ export default function Pay({ params }) {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
const temData = await response.json();
|
const temData = await response.json();
|
||||||
console.log(temData);
|
console.log(temData, JSON.stringify(body));
|
||||||
if (temData.ret === -1) return;
|
if (temData.ret === -1) return;
|
||||||
setSuperfanshipData(temData.data);
|
setSuperfanshipData(temData.data);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
Loading…
Reference in New Issue