fix: 调整轮训接口
This commit is contained in:
parent
4afcec316d
commit
9de02b0688
|
@ -394,11 +394,10 @@
|
||||||
// 轮循
|
// 轮循
|
||||||
groupProductVoucherDetail() {
|
groupProductVoucherDetail() {
|
||||||
let self = this;
|
let self = this;
|
||||||
req.axiosGet('/key/group/groupProductVoucherDetail', {
|
req.axiosPost('/key/group/groupProductVoucherDetail', {
|
||||||
token: this.token,
|
token: this.token,
|
||||||
code_batch_id: this.code_batch_id
|
code_batch_id: this.code_batch_id
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|
||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
|
|
||||||
// send_status 1发放中,2全部成功 ,3全部失败,4部分失败 ,5未领取
|
// send_status 1发放中,2全部成功 ,3全部失败,4部分失败 ,5未领取
|
||||||
|
@ -432,33 +431,6 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
// res.data.product.forEach(item => {
|
|
||||||
// let el = self.goods.product.find(items => items.id === item.id);
|
|
||||||
// if (el) {
|
|
||||||
// item.order_voucher.forEach(row => {
|
|
||||||
|
|
||||||
// // 存储错误
|
|
||||||
// if (row.receive_error !== "") {
|
|
||||||
// all_err.push(row.receive_error);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// let obj = {
|
|
||||||
// id: item.id,
|
|
||||||
// type: item.type,
|
|
||||||
// voucher: {
|
|
||||||
// denomination: el.voucher.denomination,
|
|
||||||
// reduce_amount: el.voucher.reduce_amount,
|
|
||||||
// status: self.formatStatus(row.status),
|
|
||||||
// num: self.formatStatus(row.status) === 3 ? 0 : 1,
|
|
||||||
// send_num: 1
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// product_all.push(obj)
|
|
||||||
// debugger;
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
|
|
||||||
// 第二步:更新商品数据
|
// 第二步:更新商品数据
|
||||||
self.goods.product = product_all;
|
self.goods.product = product_all;
|
||||||
|
|
||||||
|
@ -471,6 +443,14 @@
|
||||||
let ffLength = product_all.filter(item => item.voucher.status === 2);
|
let ffLength = product_all.filter(item => item.voucher.status === 2);
|
||||||
if (ffLength.length > 0) {
|
if (ffLength.length > 0) {
|
||||||
self.goods.send_status = 1;
|
self.goods.send_status = 1;
|
||||||
|
setTimeout(() => {
|
||||||
|
if (self.cont > 10) {
|
||||||
|
// 放弃
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
self.groupProductVoucherDetail();
|
||||||
|
self.cont++;
|
||||||
|
}, 5000);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -484,8 +464,6 @@
|
||||||
self.goods.err_msg = [...new Set(all_err)];
|
self.goods.err_msg = [...new Set(all_err)];
|
||||||
|
|
||||||
self.popMsg = true;
|
self.popMsg = true;
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
|
||||||
return
|
return
|
||||||
} else if (errLength.length > 0 && product_all.length > errLength.length) {
|
} else if (errLength.length > 0 && product_all.length > errLength.length) {
|
||||||
// 领取失败数,小于全部数量 -> send_status 4 部分失败
|
// 领取失败数,小于全部数量 -> send_status 4 部分失败
|
||||||
|
@ -496,8 +474,6 @@
|
||||||
self.goods.send_status = 4;
|
self.goods.send_status = 4;
|
||||||
|
|
||||||
self.popMsg = true;
|
self.popMsg = true;
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -507,13 +483,8 @@
|
||||||
self.goods.send_status = 2;
|
self.goods.send_status = 2;
|
||||||
|
|
||||||
self.popMsg = true;
|
self.popMsg = true;
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -542,12 +513,7 @@
|
||||||
|
|
||||||
// 发放中 轮循
|
// 发放中 轮循
|
||||||
if (res.data.send_status === 1) {
|
if (res.data.send_status === 1) {
|
||||||
self.timeGet = setInterval(() => {
|
setTimeout(() => {
|
||||||
// 安全值
|
|
||||||
if (self.cont > 10) {
|
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
|
||||||
}
|
|
||||||
self.groupProductVoucherDetail();
|
self.groupProductVoucherDetail();
|
||||||
self.cont++;
|
self.cont++;
|
||||||
}, 5000)
|
}, 5000)
|
||||||
|
|
BIN
favicon.ico
BIN
favicon.ico
Binary file not shown.
Before Width: | Height: | Size: 586 B |
|
@ -10,7 +10,6 @@
|
||||||
charset="utf-8"></script>
|
charset="utf-8"></script>
|
||||||
<script type="text/javascript" src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/common/axios.js?v=1367936144999">
|
<script type="text/javascript" src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/common/axios.js?v=1367936144999">
|
||||||
</script>
|
</script>
|
||||||
<link rel="shortcut icon" href="favicon.ico">
|
|
||||||
<link rel="stylesheet" href="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/css/loading.css">
|
<link rel="stylesheet" href="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/css/loading.css">
|
||||||
<link rel="stylesheet" href="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/css/index.css">
|
<link rel="stylesheet" href="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/css/index.css">
|
||||||
<script src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/js/loading.js"></script>
|
<script src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/js/loading.js"></script>
|
||||||
|
@ -71,7 +70,6 @@
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
<script>
|
<script>
|
||||||
debugger
|
|
||||||
new Vue({
|
new Vue({
|
||||||
el: '#app',
|
el: '#app',
|
||||||
data() {
|
data() {
|
||||||
|
@ -124,8 +122,8 @@
|
||||||
});
|
});
|
||||||
let self = this;
|
let self = this;
|
||||||
//获取链接携带的参数
|
//获取链接携带的参数
|
||||||
let linkId = getQueryString('id');
|
// let linkId = getQueryString('id');
|
||||||
// let linkId = "2253"
|
let linkId = "2253"
|
||||||
let keyCode = getQueryString('key');
|
let keyCode = getQueryString('key');
|
||||||
|
|
||||||
if (!linkId) {//地址栏无携带id
|
if (!linkId) {//地址栏无携带id
|
||||||
|
|
|
@ -421,33 +421,6 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
// res.data.product.forEach(item => {
|
|
||||||
// let el = self.goods.product.find(items => items.id === item.id);
|
|
||||||
// if (el) {
|
|
||||||
// item.order_voucher.forEach(row => {
|
|
||||||
|
|
||||||
// // 存储错误
|
|
||||||
// if (row.receive_error !== "") {
|
|
||||||
// all_err.push(row.receive_error);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// let obj = {
|
|
||||||
// id: item.id,
|
|
||||||
// type: item.type,
|
|
||||||
// voucher: {
|
|
||||||
// denomination: el.voucher.denomination,
|
|
||||||
// reduce_amount: el.voucher.reduce_amount,
|
|
||||||
// status: self.formatStatus(row.status),
|
|
||||||
// num: self.formatStatus(row.status) === 3 ? 0 : 1,
|
|
||||||
// send_num: 1
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// product_all.push(obj)
|
|
||||||
// debugger;
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
|
|
||||||
// 第二步:更新商品数据
|
// 第二步:更新商品数据
|
||||||
self.goods.product = product_all;
|
self.goods.product = product_all;
|
||||||
|
|
||||||
|
@ -460,6 +433,14 @@
|
||||||
let ffLength = product_all.filter(item => item.voucher.status === 2);
|
let ffLength = product_all.filter(item => item.voucher.status === 2);
|
||||||
if (ffLength.length > 0) {
|
if (ffLength.length > 0) {
|
||||||
self.goods.send_status = 1;
|
self.goods.send_status = 1;
|
||||||
|
setTimeout(() => {
|
||||||
|
if (self.cont > 10) {
|
||||||
|
// 放弃
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
self.groupProductVoucherDetail();
|
||||||
|
self.cont++;
|
||||||
|
}, 5000);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -472,8 +453,6 @@
|
||||||
// 错误去重
|
// 错误去重
|
||||||
self.goods.err_msg = [...new Set(all_err)];
|
self.goods.err_msg = [...new Set(all_err)];
|
||||||
|
|
||||||
self.popMsg = true;
|
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
self.timeGet = null;
|
||||||
return
|
return
|
||||||
} else if (errLength.length > 0 && product_all.length > errLength.length) {
|
} else if (errLength.length > 0 && product_all.length > errLength.length) {
|
||||||
|
@ -484,8 +463,6 @@
|
||||||
self.isErrLength = errLength.length;
|
self.isErrLength = errLength.length;
|
||||||
self.goods.send_status = 4;
|
self.goods.send_status = 4;
|
||||||
|
|
||||||
self.popMsg = true;
|
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
self.timeGet = null;
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -495,14 +472,9 @@
|
||||||
if (allOkLength.length > 0 && allOkLength.length === product_all.length) {
|
if (allOkLength.length > 0 && allOkLength.length === product_all.length) {
|
||||||
self.goods.send_status = 2;
|
self.goods.send_status = 2;
|
||||||
|
|
||||||
self.popMsg = true;
|
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
self.timeGet = null;
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -531,12 +503,7 @@
|
||||||
|
|
||||||
// 发放中 轮循
|
// 发放中 轮循
|
||||||
if (res.data.send_status === 1) {
|
if (res.data.send_status === 1) {
|
||||||
self.timeGet = setInterval(() => {
|
setTimeout(() => {
|
||||||
// 安全值
|
|
||||||
if (self.cont > 10) {
|
|
||||||
clearInterval(self.timeGet);
|
|
||||||
self.timeGet = null;
|
|
||||||
}
|
|
||||||
self.groupProductVoucherDetail();
|
self.groupProductVoucherDetail();
|
||||||
self.cont++;
|
self.cont++;
|
||||||
}, 5000)
|
}, 5000)
|
||||||
|
|
Loading…
Reference in New Issue