eoss-mobiles 0.2.40 → 0.2.42

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": "eoss-mobiles",
3
- "version": "0.2.40",
3
+ "version": "0.2.42",
4
4
  "description": "eoss内部移动端业务组件",
5
5
  "main": "lib/eoss-mobile.common.js",
6
6
  "files": [
@@ -136,7 +136,7 @@ export default {
136
136
  },
137
137
  addMenuIconSize: {
138
138
  type: String,
139
- default: ''
139
+ default: '40px'
140
140
  }
141
141
  },
142
142
  data() {
@@ -258,7 +258,7 @@ export default {
258
258
  const tapLength = currentTime - this.lastTapTime;
259
259
  this.lastTapTime = currentTime;
260
260
  if (this.isHideMenu) {
261
- if (tapLength < 500) {
261
+ if (tapLength < 300) {
262
262
  this.handleDoubleClick(val);
263
263
  clearTimeout(this.timer);
264
264
  return;
@@ -270,7 +270,7 @@ export default {
270
270
  this.timer = setTimeout(() => {
271
271
  this.$emit('click', val, event);
272
272
  this.targetStop && event.stopPropagation();
273
- }, 500);
273
+ }, 300);
274
274
  } else {
275
275
  this.$emit('click', val, event);
276
276
  this.targetStop && event.stopPropagation();
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.40',
108
+ version: '0.2.42',
109
109
  install,
110
110
  Button,
111
111
  ButtonGroup,