|
|
@@ -81,7 +81,7 @@
|
|
|
import OrderOpen from '../../components/order/OrderOpen.vue';
|
|
|
import order from '../../mixins/order';
|
|
|
import product from '../../mixins/product';
|
|
|
-import dayjs from 'dayjs';
|
|
|
+// import dayjs from 'dayjs';
|
|
|
export default {
|
|
|
components: { OrderOpen },
|
|
|
name: 'detail',
|
|
|
@@ -99,9 +99,9 @@ export default {
|
|
|
this.$http.get('/order/get/' + this.$route.query.id).then(res => {
|
|
|
this.info = res;
|
|
|
this.$toast.clear();
|
|
|
- if (dayjs().isBefore(dayjs(res.payTime).add(3, 'minute')) && res.type === 'BLIND_BOX') {
|
|
|
- this.$refs.box.show = true;
|
|
|
- }
|
|
|
+ // if (dayjs().isBefore(dayjs(res.payTime).add(3, 'minute')) && res.type === 'BLIND_BOX') {
|
|
|
+ // this.$refs.box.show = true;
|
|
|
+ // }
|
|
|
});
|
|
|
},
|
|
|
methods: {
|