eoss-mobiles 0.2.80 → 0.2.81
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/lib/eoss-mobile.common.js +3 -4
- package/lib/index.js +1 -1
- package/lib/table.js +2 -3
- package/package.json +1 -1
- package/packages/table/src/main.vue +2 -3
- package/src/index.js +1 -1
package/lib/table.js
CHANGED
|
@@ -2100,8 +2100,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
2100
2100
|
}
|
|
2101
2101
|
if (this.full && !this.height) {
|
|
2102
2102
|
this.$nextTick(function () {
|
|
2103
|
-
|
|
2104
|
-
_this.height = _this.page ? _this.$refs.emTable.clientHeight - 40 : _this.$refs.emTable.clientHeight;
|
|
2103
|
+
_this.tableClientHeight = _this.page ? _this.$refs.emTable.clientHeight - 40 : _this.$refs.emTable.clientHeight;
|
|
2105
2104
|
// this. = this.$refs.emTable.clientHeight - 40;
|
|
2106
2105
|
});
|
|
2107
2106
|
}
|
|
@@ -2815,7 +2814,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
2815
2814
|
ref: 'emTable',
|
|
2816
2815
|
class: 'em-table-box',
|
|
2817
2816
|
style: {
|
|
2818
|
-
height:
|
|
2817
|
+
height: '100%',
|
|
2819
2818
|
position: 'relative'
|
|
2820
2819
|
}
|
|
2821
2820
|
}, tableContents);
|
package/package.json
CHANGED
|
@@ -170,8 +170,7 @@ export default {
|
|
|
170
170
|
}
|
|
171
171
|
if (this.full && !this.height) {
|
|
172
172
|
this.$nextTick(() => {
|
|
173
|
-
|
|
174
|
-
this.height = this.page?this.$refs.emTable.clientHeight - 40 : this.$refs.emTable.clientHeight;
|
|
173
|
+
this.tableClientHeight = this.page?this.$refs.emTable.clientHeight - 40 : this.$refs.emTable.clientHeight;
|
|
175
174
|
// this. = this.$refs.emTable.clientHeight - 40;
|
|
176
175
|
});
|
|
177
176
|
}
|
|
@@ -988,7 +987,7 @@ export default {
|
|
|
988
987
|
ref: 'emTable',
|
|
989
988
|
class: 'em-table-box',
|
|
990
989
|
style: {
|
|
991
|
-
height:
|
|
990
|
+
height: '100%',
|
|
992
991
|
position: 'relative'
|
|
993
992
|
}
|
|
994
993
|
},
|