|
@@ -19,7 +19,8 @@ export default {
|
|
|
const whiteList = ["#/order"];
|
|
|
console.log(this.$route.path);
|
|
|
// const routePath = this.$route.path;
|
|
|
- if (!whiteList.includes(location.hash)) {
|
|
|
+ const locationHash = window.location.hash;
|
|
|
+ if (locationHash.includes('#/order') != -1) {
|
|
|
try {
|
|
|
let Authorization = this.getQueryVariable("Authorization") || null;
|
|
|
if (window.location.hash.indexOf("+") >= 0) {
|