eoss-ui 0.4.89 → 0.4.90
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/eoss-ui.common.js +10 -9
- package/lib/index.js +1 -1
- package/lib/main.js +4 -3
- package/package.json +1 -1
- package/packages/main/src/main.vue +2 -1
- package/src/index.js +1 -1
package/lib/main.js
CHANGED
|
@@ -3484,7 +3484,7 @@ module.exports = require("stompjs");
|
|
|
3484
3484
|
// ESM COMPAT FLAG
|
|
3485
3485
|
__webpack_require__.r(__webpack_exports__);
|
|
3486
3486
|
|
|
3487
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=
|
|
3487
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=6641fcac&
|
|
3488
3488
|
var render = function () {
|
|
3489
3489
|
var _vm = this
|
|
3490
3490
|
var _h = _vm.$createElement
|
|
@@ -3914,7 +3914,7 @@ var staticRenderFns = []
|
|
|
3914
3914
|
render._withStripped = true
|
|
3915
3915
|
|
|
3916
3916
|
|
|
3917
|
-
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=
|
|
3917
|
+
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=6641fcac&
|
|
3918
3918
|
|
|
3919
3919
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=799780ee&
|
|
3920
3920
|
var userinfovue_type_template_id_799780ee_render = function () {
|
|
@@ -7263,6 +7263,7 @@ var log = util["a" /* default */].getParams('console');
|
|
|
7263
7263
|
handleJump: function handleJump(page, type, res) {
|
|
7264
7264
|
var _this9 = this;
|
|
7265
7265
|
|
|
7266
|
+
var prevPage = sessionStorage.getItem('jump');
|
|
7266
7267
|
console.log(page);
|
|
7267
7268
|
sessionStorage.setItem('jump', page);
|
|
7268
7269
|
if (res) {
|
|
@@ -7272,7 +7273,7 @@ var log = util["a" /* default */].getParams('console');
|
|
|
7272
7273
|
this.pid = res.pid;
|
|
7273
7274
|
}
|
|
7274
7275
|
}
|
|
7275
|
-
if (util["a" /* default */].win.location.hash === page) {
|
|
7276
|
+
if (util["a" /* default */].win.location.hash === page && prevPage === page) {
|
|
7276
7277
|
this.refresh = true;
|
|
7277
7278
|
return;
|
|
7278
7279
|
}
|
package/package.json
CHANGED
|
@@ -1614,6 +1614,7 @@ export default {
|
|
|
1614
1614
|
},
|
|
1615
1615
|
//跳转页面
|
|
1616
1616
|
handleJump(page, type, res) {
|
|
1617
|
+
let prevPage = sessionStorage.getItem('jump');
|
|
1617
1618
|
console.log(page);
|
|
1618
1619
|
sessionStorage.setItem('jump', page);
|
|
1619
1620
|
if (res) {
|
|
@@ -1623,7 +1624,7 @@ export default {
|
|
|
1623
1624
|
this.pid = res.pid;
|
|
1624
1625
|
}
|
|
1625
1626
|
}
|
|
1626
|
-
if (util.win.location.hash === page) {
|
|
1627
|
+
if (util.win.location.hash === page && prevPage === page) {
|
|
1627
1628
|
this.refresh = true;
|
|
1628
1629
|
return;
|
|
1629
1630
|
}
|