jufubao-base 1.0.73-beta1 → 1.0.73-beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -183,7 +183,7 @@ export default {
|
|
|
183
183
|
method: "entry",
|
|
184
184
|
maxTime: 5, //最长轮询2的N次方(秒)
|
|
185
185
|
date: 2, //时间底数
|
|
186
|
-
time:
|
|
186
|
+
time: 0, //时间幂指数
|
|
187
187
|
timeer: null,
|
|
188
188
|
order_num: null,
|
|
189
189
|
done: false,
|
|
@@ -312,7 +312,9 @@ export default {
|
|
|
312
312
|
return;
|
|
313
313
|
}
|
|
314
314
|
this.order_num = res.tmp_order_number;
|
|
315
|
-
|
|
315
|
+
setTimeout(()=>{
|
|
316
|
+
this.getResult();
|
|
317
|
+
},1000)
|
|
316
318
|
})
|
|
317
319
|
.catch((err) => {
|
|
318
320
|
console.log(err, "err");
|
|
@@ -366,7 +366,7 @@ export default {
|
|
|
366
366
|
order_id: null, //订单号已完成初始化
|
|
367
367
|
maxTime: 5, //最长轮询2的N次方(秒)
|
|
368
368
|
date: 2, //时间底数
|
|
369
|
-
time:
|
|
369
|
+
time: 0, //时间幂指数
|
|
370
370
|
orderListPath: "", //跳转到订单列表
|
|
371
371
|
index: "", //首页跳转
|
|
372
372
|
is_show_code: "",
|
|
@@ -475,7 +475,9 @@ export default {
|
|
|
475
475
|
this.index = this.settings.index;
|
|
476
476
|
this.packageData = true;
|
|
477
477
|
styleForm.getInitItem(this, value);
|
|
478
|
-
|
|
478
|
+
setTimeout(()=>{
|
|
479
|
+
this.getStatus();
|
|
480
|
+
},1000)
|
|
479
481
|
},
|
|
480
482
|
|
|
481
483
|
getStatus() {
|