@dolphinweex/weex-harmony 0.1.40 → 0.1.41

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": "@dolphinweex/weex-harmony",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "weex harmony adapter",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -410,7 +410,7 @@ export default {
410
410
  },
411
411
 
412
412
  itemViewClick(e, item, index) {
413
- if (this.isTouchDragging || this.draggingIndex !== null) {
413
+ if (this.isTouchDragging || this.longPressTimer === null && this.data.isEditing) {
414
414
  return;
415
415
  }
416
416
  console.log('itemViewClick');
@@ -1,136 +1,140 @@
1
1
  <template>
2
- <BaseSameLayer
3
- :hosSameLayerArgs="hosSameLayerArgs"
4
- embedType="native/midea-seek-bar"
5
- :defaultWidth="300"
6
- :defaultHeight="40"
7
- ></BaseSameLayer>
2
+ <BaseSameLayer
3
+ :hosSameLayerArgs="hosSameLayerArgs"
4
+ embedType="native/midea-seek-bar"
5
+ :defaultWidth="300"
6
+ :defaultHeight="40"
7
+ ></BaseSameLayer>
8
8
  </template>
9
-
9
+
10
10
  <script>
11
- import BaseSameLayer from "./baseSameLayer.vue";
12
-
13
- export default {
14
- data() {
15
- return {
16
- width: 0,
17
- height: 0
18
- }
11
+ import BaseSameLayer from "./baseSameLayer.vue";
12
+
13
+ export default {
14
+ data() {
15
+ return {
16
+ width: 0,
17
+ height: 0
18
+ }
19
+ },
20
+ name: "MideaSeekBar",
21
+ components: {
22
+ BaseSameLayer,
23
+ },
24
+ props: {
25
+ hosUniqueProps: {
26
+ type: Object,
27
+ default() {
28
+ return {};
29
+ },
19
30
  },
20
- name: "MideaSeekBar",
21
- components: {
22
- BaseSameLayer,
31
+ min: {
32
+ type: Number,
33
+ required: true,
23
34
  },
24
- props: {
25
- hosUniqueProps: {
26
- type: Object,
27
- default() {
28
- return {};
29
- },
30
- },
31
- min: {
32
- type: Number,
33
- required: true,
34
- },
35
- max: {
36
- type: Number,
37
- required: true,
38
- },
39
- value: {
40
- type: Number,
41
- required: false,
42
- },
43
- unit: {
44
- type: String,
45
- required: false,
46
- },
47
- step: {
48
- type: Number,
49
- required: false,
50
- },
51
- showTip: {
52
- type: Boolean,
53
- required: false,
54
- },
55
- axisH: {
56
- type: Number,
57
- required: false,
58
- },
59
- pointH: {
60
- type: Number,
61
- required: false,
62
- },
63
- pointColor: {
64
- type: String,
65
- required: false,
66
- },
67
- axisColor: {
68
- type: String,
69
- required: false,
70
- },
71
- axisStartColor: {
72
- type: String,
73
- required: false,
74
- },
75
- axisEndColor: {
76
- type: String,
77
- required: false,
78
- },
79
- axisBgColor: {
80
- type: String,
81
- required: false,
82
- },
83
- disable: {
84
- type: Boolean,
85
- required: false,
86
- },
87
- sliderImage: {
88
- type: String,
89
- required: false,
90
- },
35
+ max: {
36
+ type: Number,
37
+ required: true,
91
38
  },
92
- computed: {
93
- hosSameLayerArgs() {
94
- return {
95
- ...this.hosUniqueProps, // 鸿蒙原生组件独有属性
96
- width: this.width,
97
- height: this.height,
98
- min: this.min,
99
- max: this.max,
100
- value: this.value,
101
- unit: this.unit,
102
- step: this.step,
103
- showTip: this.showTip,
104
- axisH: this.axisH,
105
- pointH: this.pointH,
106
- pointColor: this.pointColor,
107
- axisColor: this.axisColor,
108
- axisStartColor: this.axisStartColor,
109
- axisEndColor: this.axisEndColor,
110
- axisBgColor: this.axisBgColor,
111
- disable: this.disable,
112
- sliderImage: this.sliderImage,
113
- handleOnChange: this.handleOnChange,
114
- };
115
- },
39
+ value: {
40
+ type: Number,
41
+ required: false,
116
42
  },
117
- mounted() {
118
- this.width = this.$el.clientWidth;
119
- this.height = this.$el.clientHeight;
120
- },
121
-
122
- methods: {
123
- // 自定义拓展其它逻辑
124
- handleOnChange(res) {
125
- if (res.mode == 2) { //停止滑动
126
- this.$emit("stopChange", res);
127
- this.$emit("slideEnd", res);
128
- } else {
129
- this.$emit("change", res);
130
- this.$emit("slideChange", res);
131
- }
132
- },
43
+ unit: {
44
+ type: String,
45
+ required: false,
46
+ },
47
+ step: {
48
+ type: Number,
49
+ required: false,
50
+ },
51
+ showTip: {
52
+ type: Boolean,
53
+ required: false,
54
+ },
55
+ axisH: {
56
+ type: Number,
57
+ required: false,
58
+ },
59
+ pointH: {
60
+ type: Number,
61
+ required: false,
62
+ },
63
+ pointColor: {
64
+ type: String,
65
+ required: false,
66
+ },
67
+ axisColor: {
68
+ type: String,
69
+ required: false,
70
+ },
71
+ axisStartColor: {
72
+ type: String,
73
+ required: false,
74
+ },
75
+ axisEndColor: {
76
+ type: String,
77
+ required: false,
78
+ },
79
+ axisBgColor: {
80
+ type: String,
81
+ required: false,
82
+ },
83
+ disable: {
84
+ type: Boolean,
85
+ required: false,
86
+ },
87
+ sliderImage: {
88
+ type: String,
89
+ required: false,
90
+ },
91
+ rotate:{
92
+ type: Object,
93
+ default:()=>{}
94
+ }
95
+ },
96
+ computed: {
97
+ hosSameLayerArgs() {
98
+ return {
99
+ ...this.hosUniqueProps, // 鸿蒙原生组件独有属性
100
+ width: this.width,
101
+ height: this.height,
102
+ min: this.min,
103
+ max: this.max,
104
+ value: this.value,
105
+ unit: this.unit,
106
+ step: this.step,
107
+ showTip: this.showTip,
108
+ axisH: this.axisH,
109
+ pointH: this.pointH,
110
+ pointColor: this.pointColor,
111
+ axisColor: this.axisColor,
112
+ axisStartColor: this.axisStartColor,
113
+ axisEndColor: this.axisEndColor,
114
+ axisBgColor: this.axisBgColor,
115
+ disable: this.disable,
116
+ sliderImage: this.sliderImage,
117
+ handleOnChange: this.handleOnChange,
118
+ rotate: this.rotate
119
+ };
120
+ },
121
+ },
122
+ mounted() {
123
+ this.width = this.$el.clientWidth;
124
+ this.height = this.$el.clientHeight;
125
+ },
126
+
127
+ methods: {
128
+ // 自定义拓展其它逻辑
129
+ handleOnChange(res) {
130
+ if (res.mode == 2) { //停止滑动
131
+ this.$emit("stopChange", res);
132
+ this.$emit("slideEnd", res);
133
+ } else {
134
+ this.$emit("change", res);
135
+ this.$emit("slideChange", res);
136
+ }
133
137
  },
134
- };
135
- </script>
136
-
138
+ },
139
+ };
140
+ </script>
package/src/.DS_Store DELETED
Binary file
Binary file