We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 843fab7 commit 5926447Copy full SHA for 5926447
pages/component/picker/picker.vue
@@ -119,8 +119,8 @@
119
this.multiArray[2] = ['伦敦', '曼彻斯特']
120
break
121
}
122
- this.multiIndex[1] = 0
123
- this.multiIndex[2] = 0
+ this.multiIndex.splice(1, 1, 0)
+ this.multiIndex.splice(2, 1, 0)
124
125
case 1: //拖动第2列
126
switch (this.multiIndex[0]) { //判断第一列是什么
@@ -145,7 +145,7 @@
145
146
147
148
149
150
151
this.$forceUpdate()
多列的时候,第二列的显示有延迟,
看一下封装的Vue写不动,教太简单
在多列时,修改range后,picker会下标重置。
3 commit comments
wiiyee commentedon May 1, 2020
多列的时候,第二列的显示有延迟,
leijiqiang commentedon Jun 10, 2020
看一下封装的Vue写不动,教太简单
dufeng-code commentedon Feb 5, 2021
在多列时,修改range后,picker会下标重置。