doway-coms 2.3.3 → 2.3.4
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 +4 -0
package/package.json
CHANGED
package/packages/utils/store.js
CHANGED
|
@@ -178,6 +178,9 @@ export default new Vuex.Store({
|
|
|
178
178
|
SET_IDENTITY_URL:(state,url) => {
|
|
179
179
|
state.identityUrl = url
|
|
180
180
|
},
|
|
181
|
+
SET_BASE_SETTING:(state,baseSetting) => {
|
|
182
|
+
state.baseSetting = baseSetting
|
|
183
|
+
},
|
|
181
184
|
},
|
|
182
185
|
actions: {
|
|
183
186
|
/**
|
|
@@ -302,5 +305,6 @@ export default new Vuex.Store({
|
|
|
302
305
|
userId: state => state.userId,
|
|
303
306
|
userName: state => state.userName,
|
|
304
307
|
staffId: state => state.staffId,
|
|
308
|
+
baseSetting: state => state.baseSetting,
|
|
305
309
|
}
|
|
306
310
|
})
|