personalize order bug fixes
This commit is contained in:
parent
b1bc4dbba2
commit
e6c648f4fb
|
@ -31,7 +31,7 @@ export default {
|
||||||
name: "PersonalizedOrderSummaryPage",
|
name: "PersonalizedOrderSummaryPage",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
url: "https://orderexplorer.crane.com//OrderExplorer/?account=customer",
|
url: "https://orderexplorer.crane.com/OrderExplorer/?account=customer",
|
||||||
frameHeight: "800px",
|
frameHeight: "800px",
|
||||||
frameWidth: "100%",
|
frameWidth: "100%",
|
||||||
};
|
};
|
||||||
|
@ -44,14 +44,14 @@ export default {
|
||||||
watch: {
|
watch: {
|
||||||
customerNumber() {
|
customerNumber() {
|
||||||
this.url =
|
this.url =
|
||||||
"https://orderexplorer.crane.com//OrderExplorer/?account=" +
|
"https://orderexplorer.crane.com/OrderExplorer/?account=" +
|
||||||
this.customerNumber;
|
this.customerNumber;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
if (this.customerNumber)
|
if (this.customerNumber)
|
||||||
this.url =
|
this.url =
|
||||||
"https://orderexplorer.crane.com//OrderExplorer/?account=" +
|
"https://orderexplorer.crane.com/OrderExplorer/?account=" +
|
||||||
this.customerNumber;
|
this.customerNumber;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue