personalize order bug fixes

This commit is contained in:
sidharth 2022-01-27 21:36:03 +05:30
parent b1bc4dbba2
commit e6c648f4fb
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}, },
}; };