formatted file
This commit is contained in:
parent
e550b17649
commit
d68b7135bf
|
@ -2,6 +2,7 @@
|
|||
node_modules
|
||||
/dist
|
||||
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
@ -10,6 +11,7 @@ node_modules
|
|||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
git_info.json
|
||||
|
||||
# Editor directories and files
|
||||
.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"}
|
|
@ -36,29 +36,24 @@ export default {
|
|||
frameWidth: "100%",
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
userId: {
|
||||
get: function () {
|
||||
computed: {
|
||||
userId() {
|
||||
return this.$store.state.accountOne.one.id;
|
||||
},
|
||||
},
|
||||
},
|
||||
watch:
|
||||
{
|
||||
userId()
|
||||
{
|
||||
this.url= "https://orderexplorer.crane.com//OrderExplorer/?account=" +this.userId ;
|
||||
}
|
||||
},
|
||||
mounted()
|
||||
{
|
||||
if(this.userId)
|
||||
{
|
||||
|
||||
this.url= "https://orderexplorer.crane.com//OrderExplorer/?account=" +this.userId ;
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
userId() {
|
||||
this.url =
|
||||
"https://orderexplorer.crane.com//OrderExplorer/?account=" +
|
||||
this.userId;
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
if (this.userId)
|
||||
this.url =
|
||||
"https://orderexplorer.crane.com//OrderExplorer/?account=" +
|
||||
this.userId;
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue