q867427795 7 years ago
parent
commit
6763fde0b1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/main/webapp/resources/js/common/controllers/commonCtrls.js

+ 2 - 1
src/main/webapp/resources/js/common/controllers/commonCtrls.js

@@ -970,7 +970,8 @@ define([ 'app/app' ], function(app) {
 			console.log($scope.uuid)
 		})
     $scope.openMystore = function(){
-      window.open(`store/${$scope.uuid}`, '_self');
+    	var uuid = $scope.uuid
+      window.open('store/' + uuid, '_self');
 		}
   }])