doway-coms 2.10.20 → 2.10.21
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 +1 -1
- package/packages/utils/store.js +6 -1
package/package.json
CHANGED
package/packages/utils/store.js
CHANGED
|
@@ -31,8 +31,12 @@ export default new Vuex.Store({
|
|
|
31
31
|
userName: '',
|
|
32
32
|
staffId: '',
|
|
33
33
|
company: {},
|
|
34
|
+
pathTabs:[]
|
|
34
35
|
},
|
|
35
36
|
mutations: {
|
|
37
|
+
SET_PATH_TABS: (state, pathTabs) => {
|
|
38
|
+
state.pathTabs = pathTabs
|
|
39
|
+
},
|
|
36
40
|
SET_TOKEN: (state, token) => {
|
|
37
41
|
state.token = token
|
|
38
42
|
},
|
|
@@ -322,6 +326,7 @@ export default new Vuex.Store({
|
|
|
322
326
|
staffId: state => state.staffId,
|
|
323
327
|
baseSetting: state => state.baseSetting,
|
|
324
328
|
defaultDep: state => state.defaultDep,
|
|
325
|
-
company: state => state.company
|
|
329
|
+
company: state => state.company,
|
|
330
|
+
pathTabs: state => state.pathTabs
|
|
326
331
|
}
|
|
327
332
|
})
|