doway-coms 2.10.58 → 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
|
@@ -447,10 +447,12 @@ export default {
|
|
|
447
447
|
let layoutFormStyle = {
|
|
448
448
|
display: 'flex',
|
|
449
449
|
columnGap: this.flexGap+ 'px',
|
|
450
|
+
rowGap:'7px',
|
|
450
451
|
flexFlow: 'row wrap',
|
|
451
452
|
justifyContent: 'flex-start',
|
|
452
453
|
padding: '5px 5px 0px 5px',
|
|
453
|
-
overflowY: 'auto'
|
|
454
|
+
overflowY: 'auto',
|
|
455
|
+
paddingBottom:'7px'
|
|
454
456
|
}
|
|
455
457
|
|
|
456
458
|
if(this.layoutType==='grid'){
|
|
@@ -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
|
}
|
package/packages/utils/store.js
CHANGED
|
@@ -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
|
},
|