From 6cb9472225624435fd8ed85298e9c9840c0d06e8 Mon Sep 17 00:00:00 2001 From: nitmali Date: Thu, 22 Oct 2020 09:11:28 +0800 Subject: [PATCH 01/46] =?UTF-8?q?=E3=80=90=E4=BF=AE=E5=A4=8D=E3=80=91selec?= =?UTF-8?q?t=E7=BB=84=E4=BB=B6=E9=BB=98=E8=AE=A4=E5=80=BC=E7=9A=84extra?= =?UTF-8?q?=E5=9C=A8=E6=9F=90=E4=BA=9B=E6=83=85=E5=86=B5=E4=B8=8B(0?= =?UTF-8?q?=E3=80=81''=E3=80=81false)=E6=97=A0=E6=B3=95=E5=9C=A8=E5=9B=9E?= =?UTF-8?q?=E8=B0=83=E5=87=BD=E6=95=B0=E4=B8=AD=E8=8E=B7=E5=8F=96=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-select/u-select.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uview-ui/components/u-select/u-select.vue b/uview-ui/components/u-select/u-select.vue index 1285845e..3c98c5f1 100644 --- a/uview-ui/components/u-select/u-select.vue +++ b/uview-ui/components/u-select/u-select.vue @@ -268,7 +268,7 @@ export default { label: tmp ? tmp[this.labelName] : null }; // 判断是否存在额外的参数,如果存在,就返回 - if(tmp && tmp.extra) data.extra = tmp.extra; + if(tmp && tmp.extra !== undefined) data.extra = tmp.extra; this.selectValue.push(data) } }, From e39e6ab63d94f830fcbb1e98c8558d03a8a74927 Mon Sep 17 00:00:00 2001 From: dandan Date: Fri, 24 Sep 2021 16:51:31 +0800 Subject: [PATCH 02/46] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8Du-image=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E7=9A=84src=E5=85=88=E4=BC=A0=E5=85=A5=E7=A9=BA?= =?UTF-8?q?=E5=80=BC=E5=86=8D=E4=BC=A0=E5=85=A5=E9=9D=9E=E7=A9=BA=E5=80=BC?= =?UTF-8?q?=E5=90=8E,=20=E6=97=A0=E6=B3=95=E8=A7=A6=E5=8F=91loading?= =?UTF-8?q?=E6=95=88=E6=9E=9C=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-image/u-image.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/uview-ui/components/u-image/u-image.vue b/uview-ui/components/u-image/u-image.vue index c729c3c8..1e7cb87d 100644 --- a/uview-ui/components/u-image/u-image.vue +++ b/uview-ui/components/u-image/u-image.vue @@ -172,6 +172,7 @@ export default { this.loading = false; } else { this.isError = false; + this.loading = true; } } } From 1a1cd2474cfa51cc5019ecbc705b2d3801a5703a Mon Sep 17 00:00:00 2001 From: dandan Date: Fri, 24 Sep 2021 16:56:06 +0800 Subject: [PATCH 03/46] =?UTF-8?q?regular:=E7=BB=9F=E4=B8=80=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-image/u-image.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uview-ui/components/u-image/u-image.vue b/uview-ui/components/u-image/u-image.vue index 1e7cb87d..8a890be5 100644 --- a/uview-ui/components/u-image/u-image.vue +++ b/uview-ui/components/u-image/u-image.vue @@ -172,7 +172,7 @@ export default { this.loading = false; } else { this.isError = false; - this.loading = true; + this.loading = true; } } } From 211b66e26b827fd5fc556d08879b2b1bbf0dc7be Mon Sep 17 00:00:00 2001 From: nadirvishun Date: Mon, 4 Oct 2021 15:21:35 +0800 Subject: [PATCH 04/46] =?UTF-8?q?=E4=BF=AE=E6=94=B9upload=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E5=8D=95=E8=AF=8D=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E7=BB=88=E6=AD=A2=E4=B8=8A=E4=BC=A0=E5=A4=B1?= =?UTF-8?q?=E6=95=88=EF=BC=8C=E5=8F=8A=E8=BF=9B=E5=BA=A6=E6=9D=A1100?= =?UTF-8?q?=E5=90=8E=E9=9A=90=E8=97=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-upload/u-upload.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uview-ui/components/u-upload/u-upload.vue b/uview-ui/components/u-upload/u-upload.vue index f4d4b763..2a968287 100644 --- a/uview-ui/components/u-upload/u-upload.vue +++ b/uview-ui/components/u-upload/u-upload.vue @@ -21,7 +21,7 @@ 0) { + if (this.lists[index].progress < 100 && this.lists[index].progress > 0) { typeof this.lists[index].uploadTask != 'undefined' && this.lists[index].uploadTask.abort(); } this.lists.splice(index, 1); From 970c28daca1289e8c5c3df3e51f25362f94c47f4 Mon Sep 17 00:00:00 2001 From: nadirvishun Date: Mon, 4 Oct 2021 15:24:35 +0800 Subject: [PATCH 05/46] =?UTF-8?q?=E8=A7=84=E8=8C=83=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-upload/u-upload.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uview-ui/components/u-upload/u-upload.vue b/uview-ui/components/u-upload/u-upload.vue index 2a968287..376d856d 100644 --- a/uview-ui/components/u-upload/u-upload.vue +++ b/uview-ui/components/u-upload/u-upload.vue @@ -21,7 +21,7 @@ Date: Mon, 25 Oct 2021 19:41:24 +0800 Subject: [PATCH 06/46] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 978e64ef..35b2d551 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,13 @@

uView

多平台快速开发的UI框架

-[![star](https://gitee.com/xuqu/uView/badge/star.svg?theme=gvp)](https://gitee.com/xuqu/uView/stargazers) -[![fork](https://gitee.com/xuqu/uView/badge/fork.svg?theme=gvp)](https://gitee.com/xuqu/uView/members) -[![stars](https://img.shields.io/github/stars/YanxinNet/uView?style=flat-square&logo=GitHub)](https://github.com/YanxinNet/uView) -[![forks](https://img.shields.io/github/forks/YanxinNet/uView?style=flat-square&logo=GitHub)](https://github.com/YanxinNet/uView) -[![issues](https://img.shields.io/github/issues/YanxinNet/uView?style=flat-square&logo=GitHub)](https://github.com/YanxinNet/uView/issues) +[![star](https://gitee.com/umicro/uView/badge/star.svg?theme=gvp)](https://gitee.com/umicro/uView/stargazers) +[![fork](https://gitee.com/umicro/uView/badge/fork.svg?theme=gvp)](https://gitee.com/umicro/uView/members) +[![stars](https://img.shields.io/github/stars/YanxinNet/uView?style=flat-square&logo=GitHub)](https://github.com/umicro/uView) +[![forks](https://img.shields.io/github/forks/YanxinNet/uView?style=flat-square&logo=GitHub)](https://github.com/umicro/uView) +[![issues](https://img.shields.io/github/issues/YanxinNet/uView?style=flat-square&logo=GitHub)](https://github.com/umicro/uView/issues) [![Website](https://img.shields.io/badge/uView-up-blue?style=flat-square)](https://uviewui.com) -[![release](https://img.shields.io/github/v/release/YanxinNet/uView?style=flat-square)](https://gitee.com/xuqu/uView/releases) +[![release](https://img.shields.io/github/v/release/YanxinNet/uView?style=flat-square)](https://gitee.com/umicro/uView/releases) [![license](https://img.shields.io/github/license/YanxinNet/uView?style=flat-square)](https://en.wikipedia.org/wiki/MIT_License) ## 说明 From b0bc9d2ab8377062dbedd5e3e6c15924b8694412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8C=97=E6=A1=A5?= Date: Wed, 27 Oct 2021 16:46:55 +0800 Subject: [PATCH 07/46] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8A=A0=E7=BE=A4?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=EF=BC=8C=E4=B8=BAuview2.0=E5=BC=80=E6=BA=90?= =?UTF-8?q?=E5=81=9A=E5=87=86=E5=A4=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 978e64ef..2d24927c 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,8 @@ uView UI,是[uni-app](https://uniapp.dcloud.io/)生态优秀的UI框架,全 ### 官方6群:745721078(已满) ### 官方7群:627867855(已满) ### 官方8群:496409492(已满) -### [点击加9群交流反馈:828504448](https://jq.qq.com/?_wv=1027&k=Ute1wecV) +### 官方9群:828504448(已满) +### [点击加10群交流反馈:232041042](https://jq.qq.com/?_wv=1027&k=KnbeceDU) ## 特性 From c73aebc0de1de7489fcdaf8d164e8b33a69cb6e8 Mon Sep 17 00:00:00 2001 From: Li Kui <90845831+likui628@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:46:48 +0800 Subject: [PATCH 08/46] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=92=8C=E5=AE=9E=E9=99=85=E9=80=89=E6=8B=A9=E7=9A=84=E5=80=BC?= =?UTF-8?q?=E4=B8=8D=E4=B8=80=E8=87=B4=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 由于uni-app组件picker-view的bug,:value="defaultSelector"的值为[0]时没有更新显示 --- uview-ui/components/u-select/u-select.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uview-ui/components/u-select/u-select.vue b/uview-ui/components/u-select/u-select.vue index 1285845e..acd38b89 100644 --- a/uview-ui/components/u-select/u-select.vue +++ b/uview-ui/components/u-select/u-select.vue @@ -36,7 +36,7 @@ - + {{ item1[labelName] }} From c9dd8724e183ebefae326e9f6fea0bb8f7feb9b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=89=91=E6=9C=AF?= Date: Mon, 15 Nov 2021 22:45:06 +0800 Subject: [PATCH 09/46] Update u-th.vue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 修复thStyle设置无效 --- uview-ui/components/u-th/u-th.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uview-ui/components/u-th/u-th.vue b/uview-ui/components/u-th/u-th.vue index 9fe5a164..c736b9b1 100644 --- a/uview-ui/components/u-th/u-th.vue +++ b/uview-ui/components/u-th/u-th.vue @@ -39,7 +39,7 @@ style.padding = this.parent.padding; style.borderBottom = `solid 1px ${this.parent.borderColor}`; style.borderRight = `solid 1px ${this.parent.borderColor}`; - Object.assign(style, this.parent.style); + Object.assign(style, this.parent.thStyle); this.thStyle = style; } } From 5d7f3ef298de3cd163fd86672a9326ecf5dee1f3 Mon Sep 17 00:00:00 2001 From: bianxiaokai Date: Tue, 16 Nov 2021 18:11:55 +0800 Subject: [PATCH 10/46] =?UTF-8?q?fix:=E8=A7=A3=E5=86=B3defautl-value?= =?UTF-8?q?=E4=BC=A0=E5=85=A5=E5=90=8E,=E7=94=A8=E6=88=B7=E6=BB=91?= =?UTF-8?q?=E5=8A=A8=E9=80=89=E9=A1=B9=E5=88=97=E8=A1=A8=E5=90=8E,defalut-?= =?UTF-8?q?value=E4=B8=8D=E7=94=9F=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-select/u-select.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uview-ui/components/u-select/u-select.vue b/uview-ui/components/u-select/u-select.vue index 1285845e..e6bfd8ec 100644 --- a/uview-ui/components/u-select/u-select.vue +++ b/uview-ui/components/u-select/u-select.vue @@ -340,6 +340,8 @@ export default { if (this.moving) return; // #endif if (event) this.$emit(event, this.selectValue); + // 重置default-value默认值 + this.$set(this, 'defaultSelector', [0]); this.close(); }, selectHandler() { From fe02f0e1a7a909abaee9a47469adea2508b49bef Mon Sep 17 00:00:00 2001 From: bianxiaokai Date: Tue, 16 Nov 2021 18:17:37 +0800 Subject: [PATCH 11/46] =?UTF-8?q?fix:=E8=A7=A3=E5=86=B3defautl-value?= =?UTF-8?q?=E4=BC=A0=E5=85=A5=E5=90=8E,=E7=94=A8=E6=88=B7=E6=BB=91?= =?UTF-8?q?=E5=8A=A8=E9=80=89=E9=A1=B9=E5=88=97=E8=A1=A8=E5=90=8E,defalut-?= =?UTF-8?q?value=E4=B8=8D=E7=94=9F=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-select/u-select.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uview-ui/components/u-select/u-select.vue b/uview-ui/components/u-select/u-select.vue index e6bfd8ec..257e4e07 100644 --- a/uview-ui/components/u-select/u-select.vue +++ b/uview-ui/components/u-select/u-select.vue @@ -333,6 +333,8 @@ export default { }, close() { this.$emit('input', false); + // 重置default-value默认值 + this.$set(this, 'defaultSelector', [0]); }, // 点击确定或者取消 getResult(event = null) { @@ -340,8 +342,6 @@ export default { if (this.moving) return; // #endif if (event) this.$emit(event, this.selectValue); - // 重置default-value默认值 - this.$set(this, 'defaultSelector', [0]); this.close(); }, selectHandler() { From a965f8ad09615e4af41751b4df9b541280a35f9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8C=97=E6=A1=A5?= Date: Tue, 16 Nov 2021 19:59:14 +0800 Subject: [PATCH 12/46] =?UTF-8?q?=E4=BF=AE=E6=94=B9appid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 802339ba..4ca79a5a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,8 +1,8 @@ { "name" : "uView", - "appid" : "__UNI__60F4B81", + "appid" : "__UNI__6655525", "description" : "多平台快速开发的UI框架", - "versionName" : "1.8.3", + "versionName" : "1.8.4", "versionCode" : "100", "transformPx" : false, "app-plus" : { From 6c123b4f353f29d2e75c1fac244098f767c94990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8C=97=E6=A1=A5?= Date: Thu, 18 Nov 2021 19:08:56 +0800 Subject: [PATCH 13/46] =?UTF-8?q?=E4=BF=AE=E6=94=B9readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- manifest.json | 4 ++-- uview-ui/components/uview-v1/uview-v1.vue | 0 3 files changed, 6 insertions(+), 6 deletions(-) create mode 100755 uview-ui/components/uview-v1/uview-v1.vue diff --git a/README.md b/README.md index 5ab14e23..4288b0c8 100644 --- a/README.md +++ b/README.md @@ -61,10 +61,10 @@ uView UI,是[uni-app](https://uniapp.dcloud.io/)生态优秀的UI框架,全 ## 链接 -- [官方文档](https://uviewui.com/) -- [更新日志](https://uviewui.com/components/changelog.html) -- [升级指南](https://uviewui.com/components/changelog.html) -- [关于我们](https://uviewui.com/cooperation/about.html) +- [官方文档](https://v1.uviewui.com/) +- [更新日志](https://v1.uviewui.com/components/changelog.html) +- [升级指南](https://v1.uviewui.com/components/changelog.html) +- [关于我们](https://v1.uviewui.com/cooperation/about.html) ## 交流反馈 diff --git a/manifest.json b/manifest.json index 4ca79a5a..5ffdcffc 100644 --- a/manifest.json +++ b/manifest.json @@ -93,7 +93,7 @@ }, "quickapp" : {}, "mp-weixin" : { - "appid" : "wxc256e348c4032ebd", + "appid" : "", "setting" : { "urlCheck" : true, "es6" : false, @@ -121,7 +121,7 @@ }, "mp-toutiao" : { "usingComponents" : true, - "appid" : "tt2bc55d78b4ff50bf" + "appid" : "" }, "h5" : { "template" : "template.h5.html", diff --git a/uview-ui/components/uview-v1/uview-v1.vue b/uview-ui/components/uview-v1/uview-v1.vue new file mode 100755 index 00000000..e69de29b From 586e7ec36c2386258edd6b38795616805d58d767 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8C=97=E6=A1=A5?= Date: Fri, 19 Nov 2021 10:29:24 +0800 Subject: [PATCH 14/46] =?UTF-8?q?=E4=BF=AE=E6=94=B9readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4288b0c8..0183b8cd 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ uView UI,是[uni-app](https://uniapp.dcloud.io/)生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水 -## [官方文档:https://www.uviewui.com](https://www.uviewui.com) +## [官方文档:https://v1.uviewui.com](https://v1.uviewui.com) ### 官方1群:1042987248(已满) ### 官方2群:249718512(已满) @@ -70,6 +70,11 @@ uView UI,是[uni-app](https://uniapp.dcloud.io/)生态优秀的UI框架,全 欢迎加入我们的QQ群交流反馈:[点此跳转](https://www.uviewui.com/components/addQQGroup.html) +## 关于PR + +> 我们非常乐意接受各位的优质PR,但在此之前我希望您了解uView2.0是一个需要兼容多个平台的(小程序、h5、ios app、android app)包括nvue页面、vue页面。 +> 所以希望在您修复bug并提交之前尽可能的去这些平台测试一下兼容性。最好能携带测试截图以方便审核。非常感谢! + ## 安装 #### **下载地址** —— [https://ext.dcloud.net.cn/plugin?id=1593](https://ext.dcloud.net.cn/plugin?id=1593) From e697c50caf96bb7985a52bac57520270f8e9727c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8C=97=E6=A1=A5?= Date: Sun, 28 Nov 2021 17:16:23 +0800 Subject: [PATCH 15/46] =?UTF-8?q?=E6=B7=BB=E5=8A=A0issue=20=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE.zh-CN.md | 3 +++ .github/ISSUE_TEMPLATE/config.yml | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 .gitee/ISSUE_TEMPLATE.zh-CN.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.gitee/ISSUE_TEMPLATE.zh-CN.md b/.gitee/ISSUE_TEMPLATE.zh-CN.md new file mode 100644 index 00000000..6dd05af9 --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE.zh-CN.md @@ -0,0 +1,3 @@ +你好,请使用下面的链接创建 issue 以帮助我们更快的排查问题,不规范的 issue 会被关闭,感谢配合。 + +https://new-issue.uviewui.com/ diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..623c337f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: 创建一个新issue + url: https://new-issue.uviewui.com/ + about: 请使用接下来的链接创建新issue。 + - name: Create new issue + url: https://new-issue.uviewui.com/?lang=en + about: Please use the following link to create a new issue. From 293ee795666892387130f051d0e6cc9d9adf32b9 Mon Sep 17 00:00:00 2001 From: yang4515 Date: Tue, 30 Nov 2021 19:53:42 +0800 Subject: [PATCH 16/46] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dtab=E8=BF=87?= =?UTF-8?q?=E9=95=BF=E5=87=BA=E7=8E=B0=E5=B7=A6=E5=8F=B3=E6=BB=9A=E5=8A=A8?= =?UTF-8?q?=E6=97=B6=E6=8C=87=E7=A4=BA=E5=99=A8=E4=BD=8D=E7=BD=AE=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-tabs/u-tabs.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uview-ui/components/u-tabs/u-tabs.vue b/uview-ui/components/u-tabs/u-tabs.vue index 0c596585..3775fcd4 100644 --- a/uview-ui/components/u-tabs/u-tabs.vue +++ b/uview-ui/components/u-tabs/u-tabs.vue @@ -3,9 +3,9 @@ background: bgColor }"> - + - + From 473d8781fa22e809e92e7d39a2ce428fd8f60153 Mon Sep 17 00:00:00 2001 From: "PC-20210717BZNV\\Administrator" Date: Tue, 7 Dec 2021 22:27:43 +0800 Subject: [PATCH 17/46] =?UTF-8?q?fix(select=E7=BB=84=E4=BB=B6)=EF=BC=9A?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9C=A8=E5=B0=8F=E7=A8=8B=E5=BA=8F=E7=AB=AF?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E7=9A=84bug=20fix(number-box):=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E8=AE=BE=E7=BD=AE=E5=8F=AF=E8=BE=93=E5=85=A5=E5=B0=8F?= =?UTF-8?q?=E6=95=B0=E6=97=B6=EF=BC=8C=E5=B0=8F=E7=A8=8B=E5=BA=8F=E7=9C=9F?= =?UTF-8?q?=E6=9C=BA=E6=97=A0=E6=B3=95=E8=BE=93=E5=85=A5=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-number-box/u-number-box.vue | 2 +- uview-ui/components/u-select/u-select.vue | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/uview-ui/components/u-number-box/u-number-box.vue b/uview-ui/components/u-number-box/u-number-box.vue index 54a679eb..3fe16df4 100644 --- a/uview-ui/components/u-number-box/u-number-box.vue +++ b/uview-ui/components/u-number-box/u-number-box.vue @@ -10,7 +10,7 @@ - {{$t('common.title')}} + uView {{version}} - {{$t('common.intro')}} + {{$t('common.intro')}} @@ -21,78 +21,83 @@ From 09c9e206b1a7a41fd19f56687036331dfd7535fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E7=9A=93?= Date: Sat, 25 Dec 2021 17:04:20 +0800 Subject: [PATCH 19/46] =?UTF-8?q?update:=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 2 +- uview-ui/libs/config/config.js | 6 +++--- uview-ui/package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.json b/manifest.json index 5ffdcffc..9ade703a 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name" : "uView", "appid" : "__UNI__6655525", "description" : "多平台快速开发的UI框架", - "versionName" : "1.8.4", + "versionName" : "1.8.5", "versionCode" : "100", "transformPx" : false, "app-plus" : { diff --git a/uview-ui/libs/config/config.js b/uview-ui/libs/config/config.js index ac3c65ef..32742cd9 100644 --- a/uview-ui/libs/config/config.js +++ b/uview-ui/libs/config/config.js @@ -1,5 +1,5 @@ -// 此版本发布于2020-12-17 -let version = '1.8.3'; +// 此版本发布于2020-12-15 +let version = '1.8.5'; export default { v: version, @@ -12,4 +12,4 @@ export default { 'error', 'warning' ] -} \ No newline at end of file +} diff --git a/uview-ui/package.json b/uview-ui/package.json index 431d5859..c0e05d29 100644 --- a/uview-ui/package.json +++ b/uview-ui/package.json @@ -1,6 +1,6 @@ { "name": "uview-ui", - "version": "1.8.4", + "version": "1.8.5", "description": "uView UI,是uni-app生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水", "main": "index.js", "keywords": [ From 5491842db81875e883fec091da73869f8da10d98 Mon Sep 17 00:00:00 2001 From: yatoku Date: Mon, 21 Mar 2022 15:07:25 +0800 Subject: [PATCH 20/46] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D`u-inpu`t=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E4=B8=AD`blur`=E4=BA=8B=E4=BB=B6=E4=BD=BF=E7=94=A8`va?= =?UTF-8?q?lue`=E5=8F=98=E9=87=8F=E6=9C=AA=E5=A3=B0=E6=98=8E=E7=9A=84?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #1008 --- uview-ui/components/u-input/u-input.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/uview-ui/components/u-input/u-input.vue b/uview-ui/components/u-input/u-input.vue index f2aea72f..5f595565 100644 --- a/uview-ui/components/u-input/u-input.vue +++ b/uview-ui/components/u-input/u-input.vue @@ -300,11 +300,12 @@ export default { handleBlur(event) { // 最开始使用的是监听图标@touchstart事件,自从hx2.8.4后,此方法在微信小程序出错 // 这里改为监听点击事件,手点击清除图标时,同时也发生了@blur事件,导致图标消失而无法点击,这里做一个延时 + let value = event.detail.value; setTimeout(() => { this.focused = false; }, 100) // vue 原生的方法 return 出去 - this.$emit('blur', event.detail.value); + this.$emit('blur', value); setTimeout(() => { // 头条小程序由于自身bug,导致中文下,每按下一个键(尚未完成输入),都会触发一次@input,导致错误,这里进行判断处理 // #ifdef MP-TOUTIAO @@ -312,7 +313,7 @@ export default { this.lastValue = value; // #endif // 将当前的值发送到 u-form-item 进行校验 - this.dispatch('u-form-item', 'on-form-blur', event.detail.value); + this.dispatch('u-form-item', 'on-form-blur', value); }, 40) }, onFormItemError(status) { From ddb7efe1fabb5edd1ee90a25800ea36e38a572b2 Mon Sep 17 00:00:00 2001 From: yatoku Date: Tue, 15 Mar 2022 16:29:24 +0800 Subject: [PATCH 21/46] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E5=9C=A8=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E5=AE=9D=E5=B0=8F=E7=A8=8B=E5=BA=8F=E4=B8=ADu-upload?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E7=BC=BA=E5=B0=91=E5=8F=82=E6=95=B0=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #1210 --- uview-ui/components/u-upload/u-upload.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/uview-ui/components/u-upload/u-upload.vue b/uview-ui/components/u-upload/u-upload.vue index 376d856d..c7a9f059 100644 --- a/uview-ui/components/u-upload/u-upload.vue +++ b/uview-ui/components/u-upload/u-upload.vue @@ -421,6 +421,9 @@ export default { name: this.name, formData: this.formData, header: this.header, + // #ifdef MP-ALIPAY + fileType:'image', + // #endif success: res => { // 判断是否json字符串,将其转为json格式 let data = this.toJson && this.$u.test.jsonString(res.data) ? JSON.parse(res.data) : res.data; From b9f2ad790095de55247e770a7ad9017641da39b3 Mon Sep 17 00:00:00 2001 From: yzwxy Date: Thu, 17 Feb 2022 13:44:26 +0800 Subject: [PATCH 22/46] =?UTF-8?q?fix(u-number-box):=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=8A=A8=E6=80=81=E5=88=87=E6=8D=A2=E7=B1=BB=E5=9E=8B=E5=BC=95?= =?UTF-8?q?=E8=B5=B7=E7=9A=84=E8=BE=93=E5=85=A5=E6=A1=86bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/components/u-number-box/u-number-box.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uview-ui/components/u-number-box/u-number-box.vue b/uview-ui/components/u-number-box/u-number-box.vue index 3fe16df4..3b8e8bfa 100644 --- a/uview-ui/components/u-number-box/u-number-box.vue +++ b/uview-ui/components/u-number-box/u-number-box.vue @@ -10,7 +10,7 @@ Date: Tue, 28 Sep 2021 14:40:09 +0800 Subject: [PATCH 26/46] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=83=A8?= =?UTF-8?q?=E5=88=86=E4=BB=A3=E7=A0=81=E6=B3=A8=E9=87=8A=E9=87=8C=E8=8B=B1?= =?UTF-8?q?=E6=96=87=E5=8D=95=E8=AF=8D=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uview-ui/libs/function/guid.js | 4 ++-- uview-ui/libs/mixin/mixin.js | 2 +- uview-ui/libs/util/async-validator.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/uview-ui/libs/function/guid.js b/uview-ui/libs/function/guid.js index 8497664a..e04190aa 100644 --- a/uview-ui/libs/function/guid.js +++ b/uview-ui/libs/function/guid.js @@ -6,7 +6,7 @@ * v-for的时候,推荐使用后端返回的id而不是循环的index * @param {Number} len uuid的长度 * @param {Boolean} firstU 将返回的首字母置为"u" - * @param {Nubmer} radix 生成uuid的基数(意味着返回的字符串都是这个基数),2-二进制,8-八进制,10-十进制,16-十六进制 + * @param {Number} radix 生成uuid的基数(意味着返回的字符串都是这个基数),2-二进制,8-八进制,10-十进制,16-十六进制 */ function guid(len = 32, firstU = true, radix = null) { let chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split(''); @@ -29,7 +29,7 @@ function guid(len = 32, firstU = true, radix = null) { } } } - // 移除第一个字符,并用u替代,因为第一个字符为数值时,该guuid不能用作id或者class + // 移除第一个字符,并用u替代,因为第一个字符为数值时,该guid不能用作id或者class if (firstU) { uuid.shift(); return 'u' + uuid.join(''); diff --git a/uview-ui/libs/mixin/mixin.js b/uview-ui/libs/mixin/mixin.js index e3889867..cb645451 100644 --- a/uview-ui/libs/mixin/mixin.js +++ b/uview-ui/libs/mixin/mixin.js @@ -48,7 +48,7 @@ module.exports = { uni.$emit('uOnReachBottom') }, beforeDestroy() { - // 判断当前页面是否存在parent和chldren,一般在checkbox和checkbox-group父子联动的场景会有此情况 + // 判断当前页面是否存在parent和children,一般在checkbox和checkbox-group父子联动的场景会有此情况 // 组件销毁时,移除子组件在父组件children数组中的实例,释放资源,避免数据混乱 if(this.parent && uni.$u.test.array(this.parent.children)) { // 组件销毁时,移除父组件中的children数组中对应的实例 diff --git a/uview-ui/libs/util/async-validator.js b/uview-ui/libs/util/async-validator.js index d7215b9f..6183d0a3 100644 --- a/uview-ui/libs/util/async-validator.js +++ b/uview-ui/libs/util/async-validator.js @@ -437,7 +437,7 @@ function range(rule, value, source, errors, options) { } if (str) { - // 处理码点大于U+010000的文字length属性不准确的bug,如"𠮷𠮷𠮷".lenght !== 3 + // 处理码点大于U+010000的文字length属性不准确的bug,如"𠮷𠮷𠮷".length !== 3 val = value.replace(spRegexp, '_').length; } From 20ed10d68a67601b03ae7cec0c9c39548fe6deb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E7=9A=93?= Date: Tue, 19 Apr 2022 16:13:06 +0800 Subject: [PATCH 27/46] update:1.8.6 --- .gitignore | 1 + manifest.json | 2 +- uview-ui/libs/config/config.js | 4 ++-- uview-ui/package.json | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 999c4c54..ac247463 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /node_modules/* /.idea/* deploy.sh +.hbuilderx/ diff --git a/manifest.json b/manifest.json index 9ade703a..02b0c4d7 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name" : "uView", "appid" : "__UNI__6655525", "description" : "多平台快速开发的UI框架", - "versionName" : "1.8.5", + "versionName" : "1.8.6", "versionCode" : "100", "transformPx" : false, "app-plus" : { diff --git a/uview-ui/libs/config/config.js b/uview-ui/libs/config/config.js index 32742cd9..d77e9713 100644 --- a/uview-ui/libs/config/config.js +++ b/uview-ui/libs/config/config.js @@ -1,5 +1,5 @@ -// 此版本发布于2020-12-15 -let version = '1.8.5'; +// 此版本发布于2022-04-19 +let version = '1.8.6'; export default { v: version, diff --git a/uview-ui/package.json b/uview-ui/package.json index c0e05d29..e6137050 100644 --- a/uview-ui/package.json +++ b/uview-ui/package.json @@ -1,6 +1,6 @@ { "name": "uview-ui", - "version": "1.8.5", + "version": "1.8.6", "description": "uView UI,是uni-app生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水", "main": "index.js", "keywords": [ From 982ee6c5f5582fa74050df6e397a376e03be30ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E7=9A=93?= Date: Thu, 21 Apr 2022 13:48:14 +0800 Subject: [PATCH 28/46] bugfix:u-loding css --- uview-ui/components/u-loading/u-loading.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uview-ui/components/u-loading/u-loading.vue b/uview-ui/components/u-loading/u-loading.vue index c747f643..b601642c 100644 --- a/uview-ui/components/u-loading/u-loading.vue +++ b/uview-ui/components/u-loading/u-loading.vue @@ -73,7 +73,7 @@ height: 20px; display: inline-block; vertical-align: middle; - -webkit-animation: a 1s steps(12) infinite; + -webkit-animation: u-flower 1s steps(12) infinite; animation: u-flower 1s steps(12) infinite; background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat; background-size: 100%; From 774413a36364f005bf4f9b378ab8e7e3c0fd9a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E7=9A=93?= Date: Thu, 21 Apr 2022 15:25:44 +0800 Subject: [PATCH 29/46] bugfix:input textarea adjustPosition --- uview-ui/components/u-input/u-input.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/uview-ui/components/u-input/u-input.vue b/uview-ui/components/u-input/u-input.vue index 301e8002..16b8a5cc 100644 --- a/uview-ui/components/u-input/u-input.vue +++ b/uview-ui/components/u-input/u-input.vue @@ -28,6 +28,7 @@ :selection-start="uSelectionStart" :cursor-spacing="getCursorSpacing" :show-confirm-bar="showConfirmbar" + :adjust-position="adjustPosition" @input="handleInput" @blur="handleBlur" @focus="onFocus" From 8d3bcbdee015d31d07e0f6e2f9f823e95dde0d92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E7=9A=93?= Date: Sun, 24 Apr 2022 18:23:29 +0800 Subject: [PATCH 30/46] update:sass --- uview-ui/package.json | 74 +++++++++++++++++++++---------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/uview-ui/package.json b/uview-ui/package.json index e6137050..ff80541b 100644 --- a/uview-ui/package.json +++ b/uview-ui/package.json @@ -1,39 +1,39 @@ { - "name": "uview-ui", - "version": "1.8.6", - "description": "uView UI,是uni-app生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水", - "main": "index.js", - "keywords": [ - "uview", - "uView", - "uni-app", - "uni-app ui", - "uniapp", - "uviewui", - "uview ui", - "uviewUI", - "uViewui", - "uViewUI", - "uView UI", - "uni ui", - "uni UI", - "uniapp ui", - "ui", - "UI框架", - "uniapp ui框架", - "uniapp UI" - ], - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "" - }, - "devDependencies": { - "node-sass": "^4.14.0", - "sass-loader": "^8.0.2" - }, - "author": "uView", - "license": "MIT" + "name": "uview-ui", + "version": "1.8.6", + "description": "uView UI,是uni-app生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水", + "main": "index.js", + "keywords": [ + "uview", + "uView", + "uni-app", + "uni-app ui", + "uniapp", + "uviewui", + "uview ui", + "uviewUI", + "uViewui", + "uViewUI", + "uView UI", + "uni ui", + "uni UI", + "uniapp ui", + "ui", + "UI框架", + "uniapp ui框架", + "uniapp UI" + ], + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "" + }, + "devDependencies": { + "sass": "1.26.2", + "sass-loader": "8.0.2" + }, + "author": "uView", + "license": "MIT" } From 068c3434d6677aba56e302578ddb8fe8b61fd235 Mon Sep 17 00:00:00 2001 From: LIUCHAO Date: Wed, 11 May 2022 19:54:15 +0800 Subject: [PATCH 31/46] fix(tabs): amend ClassName spelling mistake --- uview-ui/components/u-tabs/u-tabs.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uview-ui/components/u-tabs/u-tabs.vue b/uview-ui/components/u-tabs/u-tabs.vue index 3775fcd4..5ffc4334 100644 --- a/uview-ui/components/u-tabs/u-tabs.vue +++ b/uview-ui/components/u-tabs/u-tabs.vue @@ -5,7 +5,7 @@ - + @@ -362,7 +362,7 @@ bottom: 0; } - .u-tabs-scorll-flex { + .u-tabs-scroll-flex { @include vue-flex; justify-content: space-between; } From 39ab6e315a88f1d273391da15dc65479c12233fa Mon Sep 17 00:00:00 2001 From: LIUCHAO <50739490+LIUCHAO-ethereal@users.noreply.github.com> Date: Thu, 12 May 2022 12:05:43 +0800 Subject: [PATCH 32/46] Fix: spelling mistake (#1234) * fix(input): amend annotation spelling mistake * fix(badge): amend annotation spelling mistake * fix(modal): amend annotation spelling mistake * fix(notice-bar): amend annotation spelling mistake * fix(radio): amend annotation spelling mistake * fix(tabs-swiper): amend ClassName spelling mistake * fix(toast): amend annotation spelling mistake * fix(message-input): amend ClassName spelling mistake * fix(card): amend Image invalid mode * fix(message-input): amend ClassName spelling mistake --- uview-ui/components/u-badge/u-badge.vue | 2 +- uview-ui/components/u-card/u-card.vue | 2 +- uview-ui/components/u-input/u-input.vue | 2 +- uview-ui/components/u-message-input/u-message-input.vue | 4 ++-- uview-ui/components/u-modal/u-modal.vue | 2 +- uview-ui/components/u-notice-bar/u-notice-bar.vue | 4 ++-- uview-ui/components/u-radio-group/u-radio-group.vue | 2 +- uview-ui/components/u-radio/u-radio.vue | 2 +- uview-ui/components/u-tabs-swiper/u-tabs-swiper.vue | 6 +++--- uview-ui/components/u-toast/u-toast.vue | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/uview-ui/components/u-badge/u-badge.vue b/uview-ui/components/u-badge/u-badge.vue index e85b133a..1c155071 100644 --- a/uview-ui/components/u-badge/u-badge.vue +++ b/uview-ui/components/u-badge/u-badge.vue @@ -113,7 +113,7 @@ style.right = this.offset[1] + 'rpx'; style.transform = "translateY(0) translateX(0)"; } - // 如果尺寸为mini,后接上scal() + // 如果尺寸为mini,后接上scale() if(this.size == 'mini') { style.transform = style.transform + " scale(0.8)"; } diff --git a/uview-ui/components/u-card/u-card.vue b/uview-ui/components/u-card/u-card.vue index a3cb2aa9..79fb7268 100644 --- a/uview-ui/components/u-card/u-card.vue +++ b/uview-ui/components/u-card/u-card.vue @@ -23,7 +23,7 @@ - {{ charArr[index] ? charArr[index] : ''}} @@ -294,7 +294,7 @@ transform: translate(-50%, -50%); } - .u-buttom-line-active { + .u-bottom-line-active { background: $u-type-primary; } diff --git a/uview-ui/components/u-modal/u-modal.vue b/uview-ui/components/u-modal/u-modal.vue index ce581133..4184c055 100644 --- a/uview-ui/components/u-modal/u-modal.vue +++ b/uview-ui/components/u-modal/u-modal.vue @@ -44,7 +44,7 @@ * @property {Boolean} show-title 是否显示标题(默认true) * @property {Boolean} async-close 是否异步关闭,只对确定按钮有效(默认false) * @property {Boolean} show-confirm-button 是否显示确认按钮(默认true) - * @property {Stringr | Number} negative-top modal往上偏移的值 + * @property {String | Number} negative-top modal往上偏移的值 * @property {Boolean} show-cancel-button 是否显示取消按钮(默认false) * @property {Boolean} mask-close-able 是否允许点击遮罩关闭modal(默认false) * @property {String} confirm-text 确认按钮的文字内容(默认"确认") diff --git a/uview-ui/components/u-notice-bar/u-notice-bar.vue b/uview-ui/components/u-notice-bar/u-notice-bar.vue index 41a6cc47..4c85b282 100644 --- a/uview-ui/components/u-notice-bar/u-notice-bar.vue +++ b/uview-ui/components/u-notice-bar/u-notice-bar.vue @@ -68,8 +68,8 @@ * @property {String Number} font-size 字体大小,单位rpx(默认28) * @property {Boolean} is-circular mode为horizontal时,指明是否水平衔接滚动(默认true) * @property {String} play-state 播放状态,play - 播放,paused - 暂停(默认play) - * @property {String Nubmer} border-radius 通知栏圆角(默认为0) - * @property {String Nubmer} padding 内边距,字符串,与普通的内边距css写法一直(默认"18rpx 24rpx") + * @property {String Number} border-radius 通知栏圆角(默认为0) + * @property {String Number} padding 内边距,字符串,与普通的内边距css写法一直(默认"18rpx 24rpx") * @property {Boolean} no-list-hidden 列表为空时,是否显示组件(默认false) * @property {Boolean} disable-touch 是否禁止通过手动滑动切换通知,只有mode = vertical,或者mode = horizontal且is-circular = false时有效(默认true) * @event {Function} click 点击通告文字触发,只有mode = vertical,或者mode = horizontal且is-circular = false时有效 diff --git a/uview-ui/components/u-radio-group/u-radio-group.vue b/uview-ui/components/u-radio-group/u-radio-group.vue index 2172eb20..b5f1de74 100644 --- a/uview-ui/components/u-radio-group/u-radio-group.vue +++ b/uview-ui/components/u-radio-group/u-radio-group.vue @@ -7,7 +7,7 @@