+
订单确认
@@ -98,7 +98,6 @@ import Qs from 'qs';
export default {
data() {
return {
- uniqueId:'',
info: {
text: ""
},
@@ -305,7 +304,6 @@ export default {
}
},
mounted() {
- this.uniqueId =this.$cookies.get('1hjz_mall_unique_id')
this.getData();
this.goodsNo = this.getParam("goodsNo");
}
diff --git a/src/view/order-detail.vue b/src/view/order-detail.vue
index 45161ae..682ee9f 100644
--- a/src/view/order-detail.vue
+++ b/src/view/order-detail.vue
@@ -102,7 +102,6 @@ var qs = require("qs");
export default {
data() {
return {
- uniqueId:'',
state: "",
stateText: "",
orderNo: "",
@@ -218,7 +217,7 @@ export default {
},
go(num) {
if (num == 1) {
- location.href = "/mall/web/vgoods/detail/" + this.info.goodsNo+ '?uniqueId='+ uniqueId;
+ location.href = "/mall/web/vgoods/detail/" + this.info.goodsNo;
} else if (num == 2) {
location.href = "/mall/web/appoint_index";
} else if (num == 3) {
@@ -349,7 +348,6 @@ export default {
}
},
mounted() {
- this.uniqueId =this.$cookies.get('1hjz_mall_unique_id')
this.orderNo = this.$route.params.id;
this.getData();
}