frontend/src/tools/apiTools.js

46 lines
1.3 KiB
JavaScript
Raw Normal View History

import { searchPendingOrderByObject } from "@/assets/api.js";
import { Sweetalert } from "zent";
// === 公用接口函数 ===
/**
*
* @param {
* type值: 1key批次 2兑换码批次 3优惠券批次 4key码
* object_value:兑换id
* } data
* @returns 0用户取消作废1订单下面没有待领取订单直接作废 2订单下面有待领取订单弹窗告知用户是否继续
*/
const commonSearchOrder = (data) => {
return new Promise((res, rej) => {
searchPendingOrderByObject(data).then((searchRes) => {
console.log("searchRes =>", searchRes);
if (searchRes.code === 200) {
if (searchRes.data.have === true) {
Sweetalert.confirm({
type: "warning",
closeBtn: true,
title: "确认操作",
content: (
<p>该key批次(key兑换码)下面有待领取订单是否继续作废 </p>
),
onConfirm() {
res(2);
},
onCancel() {
res(0);
},
className: "questModal",
parentComponent: this,
});
} else {
res(1);
}
} else {
rej(searchRes);
}
});
});
};
export { commonSearchOrder };