|
@@ -973,13 +973,13 @@ export default {
|
|
|
.then((res) => {
|
|
|
let MethodName2 =
|
|
|
"/ShopServer/Manager/FinanceManager/GetOrderExportFileTaskProgress";
|
|
|
- let timer = setTimeout(() => {
|
|
|
+ let timer = setInterval(() => {
|
|
|
getLogin(MethodName2, {
|
|
|
order_export_file_task_id: res.id,
|
|
|
})
|
|
|
.then((res) => {
|
|
|
if (res.is_finish === "true") {
|
|
|
- clearTimeout(timer);
|
|
|
+ clearInterval(timer);
|
|
|
timer = null;
|
|
|
_this.exportLoading = false;
|
|
|
location.href = res.order_export_file_url;
|
|
@@ -1134,6 +1134,7 @@ export default {
|
|
|
this.getQuickList();
|
|
|
this.getOrgList();
|
|
|
this.getList();
|
|
|
+ console.log("2025-06-12");
|
|
|
},
|
|
|
//生命周期 - 挂载完成(可以访问DOM元素)
|
|
|
mounted() {
|