Skip to content

Commit

Permalink
V2.9.1更新
Browse files Browse the repository at this point in the history
  • Loading branch information
dingyong0214 committed Jul 21, 2023
1 parent 1e8b07d commit bc62840
Show file tree
Hide file tree
Showing 6 changed files with 1,015 additions and 952 deletions.
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,44 @@ ThorUI组件库小程序原生版本,该开源版源码为V1.4.2版本,后

## 更新日志

### 2.9.1(2023-07-21)

1.tui-picker(选择器)组件优化,修复初始化可能显示不正确的问题。

2.tui-datetime(日期时间选择器)组件优化,修复已知问题。

3.tui-sticky(吸顶容器)组件优化,修复已知问题。

4.tui-countdown(倒计时)组件优化,调整结束逻辑。

5.tui-rate(评分)组件优化。

6.tui-datetime(日期时间选择器)组件优化,新增属性设置z-index值。

7.tui-picker(选择器)组件优化,新增属性设置z-index值。

8.tui-slider(滑动选择器)组件优化,uni-app版支持在pc端使用。

9.tui-drag 拖拽排序 组件优化,uni-app版支持在pc端使用。

10.tui-slide-verify 滑动验证码 组件优化,uni-app版支持在pc端使用。

11.tui-rotate-verify 旋转图片验证 组件优化,uni-app版支持在pc端使用。

12.tui-upload(图片上传)组件优化,新增upload方法进行上传,此方法可满足更多上传需求,具体使用请查看文档。

13.tui-modal(弹框)组件优化,新增属性设置遮罩颜色,是否显示遮罩等。

14.tui-input(输入框)组件优化,修复小程序端圆角全局配置失效的问题。

15.tui-calendar(日历)组件优化,当最大日期小于今天时调整默认显示日期。

16.tui-actionsheet(操作菜单)组件优化,新增属性设置遮罩背景色。

17.ThorUI 文档优化,请刷新查看。

18.优化部分已知问题。

### 2.9.0(2023-06-20)

1.tui-lottie(动画)组件优化。
Expand Down
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ App({
},
globalData: {
isLogin: wx.getStorageSync("thorui_mobile") ? true : false,
version: "2.9.0",
version: "2.9.1",
isOnline:true,
mobile:wx.getStorageSync("thorui_mobile") || "",
statusBarHeight:0,
Expand Down
4 changes: 2 additions & 2 deletions app.wxss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
page {
background: #fafafa;
background: #fafafa;
/* font-family:PingFang-SC-Medium; */
}

.container {
display: flex;
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion common/httpRequest.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* 常用方法封装 请求,文件上传等
* @author echo.
* @author echo.
**/

const tui = {
Expand Down
2 changes: 1 addition & 1 deletion filter/filter.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//增强wxml表现能力,一般为数据的简单处理
//在 iOS 设备上小程序内的 wxs 会比 javascript 代码快 2 ~ 20 倍
var wxs = {
var wxs = {
//转成数字
intParse: function(value) {
return parseInt(value)
Expand Down
Loading

0 comments on commit bc62840

Please sign in to comment.