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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doway-coms",
3
- "version": "2.3.3",
3
+ "version": "2.3.4",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -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
  })