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/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
- console.log(_this.$refs.emTable.clientHeight, 'emTable');
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: this.isForm ? '100%' : '0',
2817
+ height: '100%',
2819
2818
  position: 'relative'
2820
2819
  }
2821
2820
  }, tableContents);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-mobiles",
3
- "version": "0.2.80",
3
+ "version": "0.2.81",
4
4
  "description": "eoss内部移动端业务组件",
5
5
  "main": "lib/eoss-mobile.common.js",
6
6
  "files": [
@@ -170,8 +170,7 @@ export default {
170
170
  }
171
171
  if (this.full && !this.height) {
172
172
  this.$nextTick(() => {
173
- console.log(this.$refs.emTable.clientHeight, 'emTable');
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: this.isForm ? '100%' : '0',
990
+ height: '100%',
992
991
  position: 'relative'
993
992
  }
994
993
  },
package/src/index.js CHANGED
@@ -105,7 +105,7 @@ if (typeof window !== 'undefined' && window.Vue) {
105
105
  }
106
106
 
107
107
  export default {
108
- version: '0.2.80',
108
+ version: '0.2.81',
109
109
  install,
110
110
  Button,
111
111
  ButtonGroup,