doway-coms 2.10.59 → 2.10.60

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.10.59",
3
+ "version": "2.10.60",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -3124,6 +3124,9 @@ export default {
3124
3124
  },
3125
3125
  headerCellStyleFunc(scope){
3126
3126
  let customStyle = {}
3127
+ if(this.$store.getters.baseSetting?.gridHeaderCellStyle){
3128
+ customStyle = this.$store.getters.baseSetting.gridHeaderCellStyle
3129
+ }
3127
3130
  if(this.headerCellStyle){
3128
3131
  customStyle = this.headerCellStyle
3129
3132
  }
@@ -49,6 +49,9 @@ export default new Vuex.Store({
49
49
  SET_STAFFID: (state, staffId) => {
50
50
  state.staffId = staffId
51
51
  },
52
+ SET_GRID_HEADER_CELL_STYLE(state,gridHeaderCellStyle){
53
+ state.
54
+ },
52
55
  SET_INDUSTRY_VERSION: (state, industryVersion) => {
53
56
  state.industryVersion = industryVersion
54
57
  },