Skip to content

Commit 6f96309

Browse files
committed
# **欢迎加群交流反馈:249718512**
1. 优化cell组件的label数字不会换行的问题 2. countdown组件新增hide-zero-day参数,当"天"为0时自动隐藏该字段 3. image组件允许事件冒泡到外层 4. input组件添加cursor-spacing参数 5. modal和popup的中部弹出模式新增negative-top参数,可以将弹出区域往上移,避免与弹出的键盘重合。 6. 优化navbar的title为英文时,可能会发生部分字母被竖向截断的问题 7. 优化picker和select滑动顶部区域,可能会产生报错的问题 8. row组件允许flex换行 9. 优化upload组件的on-list-change事件逻辑
1 parent c185e80 commit 6f96309

File tree

20 files changed

+429
-64
lines changed

20 files changed

+429
-64
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
uView UI,是[uni-app](https://uniapp.dcloud.io/)生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水
1111

12+
### **欢迎加群交流反馈:249718512**
13+
1214
## 特性
1315

1416
- 兼容安卓,iOS,微信小程序,H5,QQ小程序,百度小程序,支付宝小程序,头条小程序
@@ -91,7 +93,7 @@ Vue.use(uView);
9193
}
9294
```
9395

94-
请通过[快速上手](https://uviewui.com/components/quickstart.html)了解更详细的内容
96+
请通过[快速上手](https://uviewui.com/components/quickstart.html)了解更详细的内容
9597

9698
## 使用方法
9799
配置easycom规则后,自动按需引入,无需`import`组件,直接引用即可。
@@ -102,7 +104,7 @@ Vue.use(uView);
102104
</template>
103105
```
104106

105-
请通过[快速上手](https://uviewui.com/components/quickstart.html)了解更详细的内容
107+
请通过[快速上手](https://uviewui.com/components/quickstart.html)了解更详细的内容
106108

107109

108110
## 捐赠uView的研发

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name" : "uView",
33
"appid" : "__UNI__60F4B81",
44
"description" : "多平台快速开发的UI框架",
5-
"versionName" : "1.4.3",
5+
"versionName" : "1.4.4",
66
"versionCode" : "100",
77
"transformPx" : false,
88
"app-plus" : {

pages.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,13 @@
649649
{
650650
"root": "pages/componentsB",
651651
"pages": [
652+
// tabbar-底部导航栏
653+
{
654+
"path": "tabbar/index",
655+
"style": {
656+
"navigationBarTitleText": "tabbar-底部导航栏"
657+
}
658+
},
652659
// line-线条
653660
{
654661
"path": "line/index",

pages/componentsB/tabbar/index.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<template>
2+
</template>
3+
4+
<script>
5+
</script>
6+
7+
<style>
8+
</style>

0 commit comments

Comments
 (0)