doway-coms 2.11.22 → 2.11.24
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
|
@@ -1971,7 +1971,7 @@ export default {
|
|
|
1971
1971
|
toolTip: originCol.toolTip,
|
|
1972
1972
|
visible: true,
|
|
1973
1973
|
}
|
|
1974
|
-
console.debug('colInfo',colInfo)
|
|
1974
|
+
// console.debug('colInfo',colInfo)
|
|
1975
1975
|
|
|
1976
1976
|
if (XEUtils.has(originCol, 'showOverflow')) {
|
|
1977
1977
|
colInfo['showOverflow'] = originCol.showOverflow
|
|
@@ -146,10 +146,14 @@ export default {
|
|
|
146
146
|
},
|
|
147
147
|
created() {},
|
|
148
148
|
methods: {
|
|
149
|
-
change() {
|
|
149
|
+
change(event) {
|
|
150
|
+
// const value = event.target.value.trim(); // 去除前后空格
|
|
151
|
+
// this.$emit('input', value);
|
|
150
152
|
this.$emit('change')
|
|
151
153
|
},
|
|
152
|
-
blur() {
|
|
154
|
+
blur(event) {
|
|
155
|
+
// const value = event.target.value.trim(); // 去除前后空格
|
|
156
|
+
// this.$emit('input', value);
|
|
153
157
|
this.$emit('blur')
|
|
154
158
|
},
|
|
155
159
|
onContextmenu(event, currentValue) {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
.vxe-table--render-default.border--full .vxe-body--column, .vxe-table--render-default.border--full .vxe-footer--column, .vxe-table--render-default.border--full .vxe-header--column{
|
|
2
|
+
/* background-image: linear-gradient(#a7a6a6, #a7a6a6), linear-gradient(#a7a6a6, #a7a6a6) !important; */
|
|
3
|
+
background-image:none !important;
|
|
4
|
+
box-shadow: 0 0 0 0.5px #a7a6a6;
|
|
5
|
+
/* border-bottom:1px solid #a7a6a6!important;
|
|
6
|
+
border-right:1px solid #a7a6a6!important;
|
|
7
|
+
border-left:1px solid #a7a6a6!important; */
|
|
8
|
+
}
|
|
9
|
+
.vxe-table--render-default.border--full .vxe-header--column{
|
|
10
|
+
border-bottom:2px solid #a7a6a6;
|
|
11
|
+
}
|