doway-coms 2.10.61 → 2.10.63
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
|
@@ -3125,8 +3125,9 @@ export default {
|
|
|
3125
3125
|
headerCellStyleFunc(scope){
|
|
3126
3126
|
let customStyle = {}
|
|
3127
3127
|
if(this.$store.getters.baseSetting?.gridHeaderCellStyle){
|
|
3128
|
-
customStyle = this.$store.getters.baseSetting.gridHeaderCellStyle
|
|
3128
|
+
customStyle = JSON.parse(this.$store.getters.baseSetting.gridHeaderCellStyle)
|
|
3129
3129
|
}
|
|
3130
|
+
// console.debug('customStyle',customStyle)
|
|
3130
3131
|
if(this.headerCellStyle){
|
|
3131
3132
|
customStyle = this.headerCellStyle
|
|
3132
3133
|
}
|