doway-coms 2.11.68 → 2.11.69

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.11.68",
3
+ "version": "2.11.69",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -2101,6 +2101,7 @@ export default {
2101
2101
  }
2102
2102
  if (originCol.align) {
2103
2103
  colInfo['align'] = originCol.align
2104
+ colInfo['footerAlign'] = originCol.align
2104
2105
  }
2105
2106
  if (originCol.visible === false) {
2106
2107
  colInfo.visible = false
@@ -3339,6 +3340,7 @@ export default {
3339
3340
  return '选中'
3340
3341
  }
3341
3342
  if (this.footerSum.includes(column.property)) {
3343
+
3342
3344
  let tempSumVal = XEUtils.sum(tempSelectRows, column.property)
3343
3345
  if (
3344
3346
  column.formatter &&
@@ -3363,6 +3365,8 @@ export default {
3363
3365
  return '合计'
3364
3366
  }
3365
3367
  if (this.footerSum.includes(column.property)) {
3368
+ // console.debug('column',column)
3369
+ // column.footerAlign = 'right';
3366
3370
  let tempSumVal = XEUtils.sum(data, column.property)
3367
3371
  if (
3368
3372
  column.formatter &&
@@ -4585,12 +4589,13 @@ export default {
4585
4589
  ::v-deep .vxe-cell--sort-wrapper {
4586
4590
  display: inline-flex;
4587
4591
  }
4588
-
4589
- ::v-deep .vxe-cell {
4592
+ /* 需要注释,会影响表尾合计的对齐方式,不知道为什么要加这个,需要跟玉龙确认*/
4593
+ ::v-deep .vxe-header--column .vxe-cell {
4590
4594
  display: flex !important;
4591
4595
  align-items: center !important;
4592
4596
  justify-content: flex-start !important;
4593
4597
  }
4598
+
4594
4599
  ::v-deep table > tbody > tr > td >.c--tooltip {
4595
4600
  display: block !important;
4596
4601
  }