ecinc-cloud-mappaio 9.7.65 → 9.7.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/ecmappaio.common.js
CHANGED
|
@@ -58290,10 +58290,8 @@ var auth_install = function install(Vue) {
|
|
|
58290
58290
|
return token === 'undefined' ? null : token;
|
|
58291
58291
|
},
|
|
58292
58292
|
getCookieToken: function getCookieToken() {
|
|
58293
|
-
token = js_cookie_default().get(TokenKey);
|
|
58294
|
-
|
|
58295
|
-
pcode = pcode === 'undefined' ? null : pcode;
|
|
58296
|
-
if (!token && !pcode) {
|
|
58293
|
+
var token = js_cookie_default().get(TokenKey);
|
|
58294
|
+
if (!token) {
|
|
58297
58295
|
if (port === '-') {
|
|
58298
58296
|
token = js_cookie_default().get(window.jwtTokenKey || 'ECWEB-JWTSSO-TOKEN');
|
|
58299
58297
|
} else {
|
package/lib/ecmappaio.umd.js
CHANGED
|
@@ -58308,10 +58308,8 @@ var auth_install = function install(Vue) {
|
|
|
58308
58308
|
return token === 'undefined' ? null : token;
|
|
58309
58309
|
},
|
|
58310
58310
|
getCookieToken: function getCookieToken() {
|
|
58311
|
-
token = js_cookie_default().get(TokenKey);
|
|
58312
|
-
|
|
58313
|
-
pcode = pcode === 'undefined' ? null : pcode;
|
|
58314
|
-
if (!token && !pcode) {
|
|
58311
|
+
var token = js_cookie_default().get(TokenKey);
|
|
58312
|
+
if (!token) {
|
|
58315
58313
|
if (port === '-') {
|
|
58316
58314
|
token = js_cookie_default().get(window.jwtTokenKey || 'ECWEB-JWTSSO-TOKEN');
|
|
58317
58315
|
} else {
|