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 8968a8e commit f0860beCopy full SHA for f0860be
uview-ui/components/u-tabs/u-tabs.vue
@@ -202,6 +202,7 @@
202
'transition-duration': `${this.barFirstTimeMove ? 0 : this.duration }s`,
203
'background-color': this.activeColor,
204
height: this.barHeight + 'rpx',
205
+ opacity: this.barFirstTimeMove ? 0 : 1,
206
// 设置一个很大的值,它会自动取能用的最大值,不用高度的一半,是因为高度可能是单数,会有小数出现
207
'border-radius': `${this.barHeight / 2}px`
208
};
uview-ui/libs/function/test.js
@@ -9,7 +9,7 @@ function email(value) {
9
* 验证手机格式
10
*/
11
function mobile(value) {
12
- return /^1[23456789]\d{9}$/.test(value)
+ return /^1[3-9]\d{9}$/.test(value)
13
}
14
15
/**
0 commit comments