doway-coms 2.11.20 → 2.11.21

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.20",
3
+ "version": "2.11.21",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -90,8 +90,8 @@
90
90
  <div :key="item.field">
91
91
  <span v-if="item.visible !== false">{{ item.title }}</span>
92
92
  <Tooltip
93
- :title="item.tooltip"
94
- v-if="item.tooltip && item.visible !== false"
93
+ :title="item.toolTip"
94
+ v-if="item.toolTip && item.visible !== false"
95
95
  style="margin: 0 2px"
96
96
  >
97
97
  <img src="../../styles/icon/help.png" alt="" style="width: 14px" />
@@ -1968,9 +1968,10 @@ export default {
1968
1968
  let colInfo = {
1969
1969
  field: originCol.field,
1970
1970
  title: originCol.title,
1971
- tooltip: originCol.tooltip,
1971
+ toolTip: originCol.toolTip,
1972
1972
  visible: true,
1973
1973
  }
1974
+ console.debug('colInfo',colInfo)
1974
1975
 
1975
1976
  if (XEUtils.has(originCol, 'showOverflow')) {
1976
1977
  colInfo['showOverflow'] = originCol.showOverflow
@@ -88,7 +88,8 @@ export default new Vuex.Store({
88
88
  sortable: loopField.isSortable,
89
89
  controlType: loopField.controlType,
90
90
  edit: loopField.edit,
91
- sysVisible: !loopField.sysHidden
91
+ sysVisible: !loopField.sysHidden,
92
+ toolTip:loopField.toolTip
92
93
  }
93
94
  if (tempField.sysVisible === false) {
94
95
  tempField.visible = false