formatted file

This commit is contained in:
sidharth 2022-01-25 14:55:30 +05:30
parent e550b17649
commit d68b7135bf
3 changed files with 20 additions and 23 deletions

2
.gitignore vendored
View File

@ -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

View File

@ -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"}

View File

@ -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>