formatted file
This commit is contained in:
parent
e550b17649
commit
d68b7135bf
|
@ -2,6 +2,7 @@
|
||||||
node_modules
|
node_modules
|
||||||
/dist
|
/dist
|
||||||
|
|
||||||
|
|
||||||
# local env files
|
# local env files
|
||||||
.env.local
|
.env.local
|
||||||
.env.*.local
|
.env.*.local
|
||||||
|
@ -10,6 +11,7 @@ node_modules
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
git_info.json
|
||||||
|
|
||||||
# Editor directories and files
|
# Editor directories and files
|
||||||
.idea
|
.idea
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{"branch_name":"beta","last_commit_date":"2022-01-25T07:23:33.000Z","last_commit_author":"sidharth","last_commit_hash":"c3b1962bf6bb86f156d4aa412143c19cc6fffac5"}
|
{"branch_name":"beta","last_commit_date":"2022-01-25T08:33:21.000Z","last_commit_author":"rakesh","last_commit_hash":"e550b1764950541e872cc218b3c7043fa3e07611"}
|
|
@ -37,28 +37,23 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
userId: {
|
userId() {
|
||||||
get: function () {
|
|
||||||
return this.$store.state.accountOne.one.id;
|
return this.$store.state.accountOne.one.id;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
userId() {
|
||||||
|
this.url =
|
||||||
|
"https://orderexplorer.crane.com//OrderExplorer/?account=" +
|
||||||
|
this.userId;
|
||||||
},
|
},
|
||||||
watch:
|
|
||||||
{
|
|
||||||
userId()
|
|
||||||
{
|
|
||||||
this.url= "https://orderexplorer.crane.com//OrderExplorer/?account=" +this.userId ;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
mounted()
|
mounted() {
|
||||||
{
|
if (this.userId)
|
||||||
if(this.userId)
|
this.url =
|
||||||
{
|
"https://orderexplorer.crane.com//OrderExplorer/?account=" +
|
||||||
|
this.userId;
|
||||||
this.url= "https://orderexplorer.crane.com//OrderExplorer/?account=" +this.userId ;
|
},
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue