|
|
@@ -120,16 +120,18 @@ export default {
|
|
|
message: '加载中...',
|
|
|
forbidClick: true
|
|
|
});
|
|
|
- return this.$http.get('/order/get/' + this.$route.query.id).then(res => {
|
|
|
- if (res.subOrders) {
|
|
|
- this.orderList = res.subOrders;
|
|
|
- }
|
|
|
- this.info = res;
|
|
|
- this.$toast.clear();
|
|
|
- if (this.info.type === 'BLIND_BOX' && !this.info.opened) {
|
|
|
- this.openBlindBox();
|
|
|
- }
|
|
|
- });
|
|
|
+ setTimeout(() => {
|
|
|
+ return this.$http.get('/order/get/' + this.$route.query.id).then(res => {
|
|
|
+ if (res.subOrders) {
|
|
|
+ this.orderList = res.subOrders;
|
|
|
+ }
|
|
|
+ this.info = res;
|
|
|
+ this.$toast.clear();
|
|
|
+ if (this.info.type === 'BLIND_BOX' && !this.info.opened) {
|
|
|
+ this.openBlindBox();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }, 50);
|
|
|
},
|
|
|
copy() {
|
|
|
this.$copyText(this.info.id).then(
|