n20-common-lib 1.2.33 → 1.2.34
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/package.json
CHANGED
|
@@ -25,10 +25,6 @@ const routerBaseRe = new RegExp('^' + routerBase)
|
|
|
25
25
|
export default {
|
|
26
26
|
name: 'SubContent',
|
|
27
27
|
props: {
|
|
28
|
-
appNo: {
|
|
29
|
-
type: String,
|
|
30
|
-
default: process.env.VUE_APP_NAME
|
|
31
|
-
},
|
|
32
28
|
isTest: {
|
|
33
29
|
type: Boolean,
|
|
34
30
|
default: false
|
|
@@ -49,7 +45,7 @@ export default {
|
|
|
49
45
|
}
|
|
50
46
|
},
|
|
51
47
|
created() {
|
|
52
|
-
setRela(
|
|
48
|
+
setRela()
|
|
53
49
|
|
|
54
50
|
window.addEventListener('message', this.watchMessage)
|
|
55
51
|
|
|
@@ -59,10 +59,6 @@ export default {
|
|
|
59
59
|
tabsNav
|
|
60
60
|
},
|
|
61
61
|
props: {
|
|
62
|
-
appNo: {
|
|
63
|
-
type: String,
|
|
64
|
-
default: process.env.VUE_APP_NAME
|
|
65
|
-
},
|
|
66
62
|
menus: {
|
|
67
63
|
type: Array,
|
|
68
64
|
default: () => []
|
|
@@ -131,7 +127,7 @@ export default {
|
|
|
131
127
|
window._tab_cache_route = undefined
|
|
132
128
|
window._pending_update_cache = {}
|
|
133
129
|
|
|
134
|
-
setRela(
|
|
130
|
+
setRela()
|
|
135
131
|
|
|
136
132
|
this.getCollapse()
|
|
137
133
|
this.getTabList()
|
package/src/utils/relaNo.js
CHANGED