fix: 优化优惠券防抖功能
This commit is contained in:
parent
e21637338f
commit
2ea28a13e7
|
@ -662,16 +662,16 @@ const UseCouponAddEdit = forwardRef((props, ref) => {
|
|||
console.log("编辑 大提交 =>", param);
|
||||
|
||||
editCoupon(editData.id, param).then((res) => {
|
||||
setState({
|
||||
isLoadingBtn: false,
|
||||
});
|
||||
handelResponse(
|
||||
res,
|
||||
(req, msg) => {
|
||||
Notify.success(res.message);
|
||||
setTimeout(() => {
|
||||
setState({
|
||||
isLoadingBtn: false,
|
||||
});
|
||||
window.history.back();
|
||||
}, 2000);
|
||||
}, 500);
|
||||
},
|
||||
(err) => {
|
||||
Notify.error(err);
|
||||
|
@ -721,16 +721,17 @@ const UseCouponAddEdit = forwardRef((props, ref) => {
|
|||
});
|
||||
}
|
||||
addCoupon(param).then((res) => {
|
||||
setState({
|
||||
isLoadingBtn: false,
|
||||
});
|
||||
handelResponse(
|
||||
res,
|
||||
(req, msg) => {
|
||||
Notify.success(res.message);
|
||||
|
||||
setTimeout(() => {
|
||||
setState({
|
||||
isLoadingBtn: false,
|
||||
});
|
||||
window.history.back();
|
||||
}, 2000);
|
||||
}, 500);
|
||||
},
|
||||
(err) => {
|
||||
Notify.error(err);
|
||||
|
|
Loading…
Reference in New Issue