doway-coms 2.11.19 → 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
|
@@ -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.
|
|
94
|
-
v-if="item.
|
|
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
|
-
|
|
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
|
package/packages/utils/msg.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {notification,Modal,message } from 'ant-design-vue'
|
|
2
2
|
export function successMsg(msg, desc){
|
|
3
|
-
message.success({ content: msg, duration:
|
|
3
|
+
message.success({ content: msg, duration: 2 })
|
|
4
4
|
// notification['success']({ message: msg, description: desc, top: '100px' })
|
|
5
5
|
}
|
|
6
6
|
export function warningMsg(msg, desc){
|
package/packages/utils/store.js
CHANGED
|
@@ -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
|