收银台增加轮询
This commit is contained in:
parent
74c5afca5d
commit
b1bd9b861d
|
@ -16,72 +16,81 @@ export default function Pay({ params }) {
|
|||
//超粉商品数据
|
||||
const [superfanshipData, setSuperfanshipData] = useState();
|
||||
const [isFetching, setIsFetching] = useState(true);
|
||||
useEffect(() => {
|
||||
const getData = async () => {
|
||||
try {
|
||||
const base = webviewBaseRequest();
|
||||
const body = {
|
||||
zid: parseInt(params.zid),
|
||||
moment_id: parseInt(params.moment_id),
|
||||
product_id: params.product_id,
|
||||
...base,
|
||||
};
|
||||
const signature = generateSignature(body);
|
||||
const response = await fetch(
|
||||
`/api/zone/get_cashier?signature=${signature}`,
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify(body),
|
||||
}
|
||||
);
|
||||
const temData = await response.json();
|
||||
console.log(temData, JSON.stringify(body));
|
||||
if (temData.ret === -1) {
|
||||
Toast.show({
|
||||
content: temData.msg,
|
||||
});
|
||||
return;
|
||||
|
||||
//获取当前选购的商品数据
|
||||
const getData = async () => {
|
||||
try {
|
||||
const base = webviewBaseRequest();
|
||||
const body = {
|
||||
zid: parseInt(params.zid),
|
||||
moment_id: parseInt(params.moment_id),
|
||||
product_id: params.product_id,
|
||||
...base,
|
||||
};
|
||||
const signature = generateSignature(body);
|
||||
const response = await fetch(
|
||||
`/api/zone/get_cashier?signature=${signature}`,
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify(body),
|
||||
}
|
||||
setData(temData.data);
|
||||
setIsFetching(false);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
);
|
||||
const temData = await response.json();
|
||||
if (temData.ret === -1) {
|
||||
Toast.show({
|
||||
content: temData.msg,
|
||||
});
|
||||
return;
|
||||
}
|
||||
};
|
||||
const getSuperfanshipData = async () => {
|
||||
try {
|
||||
const base = webviewBaseRequest();
|
||||
const body = {
|
||||
zid: parseInt(params.zid),
|
||||
product_id: "h5_zone_superfanship",
|
||||
...base,
|
||||
};
|
||||
const signature = generateSignature(body);
|
||||
const response = await fetch(
|
||||
`/api/zone/get_cashier?signature=${signature}`,
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify(body),
|
||||
}
|
||||
);
|
||||
const temData = await response.json();
|
||||
console.log(temData, JSON.stringify(body));
|
||||
if (temData.ret === -1) return;
|
||||
setSuperfanshipData(temData.data);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
};
|
||||
setData(temData.data);
|
||||
setIsFetching(false);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
};
|
||||
|
||||
//获取超粉商品数据
|
||||
const getSuperfanshipData = async () => {
|
||||
try {
|
||||
const base = webviewBaseRequest();
|
||||
const body = {
|
||||
zid: parseInt(params.zid),
|
||||
product_id: "h5_zone_superfanship",
|
||||
...base,
|
||||
};
|
||||
const signature = generateSignature(body);
|
||||
const response = await fetch(
|
||||
`/api/zone/get_cashier?signature=${signature}`,
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify(body),
|
||||
}
|
||||
);
|
||||
const temData = await response.json();
|
||||
if (temData.ret === -1) return;
|
||||
setSuperfanshipData(temData.data);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
};
|
||||
|
||||
//轮询请求
|
||||
useEffect(() => {
|
||||
setTimeout(() => {
|
||||
getData();
|
||||
getSuperfanshipData();
|
||||
}, 500);
|
||||
const intervalId = setInterval(() => {
|
||||
getData();
|
||||
getSuperfanshipData();
|
||||
}, 2000);
|
||||
return () => clearInterval(intervalId);
|
||||
}, []);
|
||||
|
||||
//是否勾选购买超粉switch组件
|
||||
|
|
Loading…
Reference in New Issue