From df469f28b78f512505bcf84404dc7a86c2f2096c Mon Sep 17 00:00:00 2001 From: HRK <119110706+18148764734@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:35:08 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=E4=B8=BA=E5=85=BC=E5=AE=B9=E6=8A=96?= =?UTF-8?q?=E9=9F=B3=E5=B0=8F=E7=A8=8B=E5=BA=8F=E4=BA=8B=E4=BB=B6=E4=BC=A0?= =?UTF-8?q?=E9=80=92=E5=A4=B1=E6=95=88=EF=BC=8C=E9=92=88=E5=AF=B9=E6=8A=96?= =?UTF-8?q?=E9=9F=B3=E5=B9=B3=E5=8F=B0=E8=AE=BE=E7=BD=AE=E4=B8=8D=E5=90=8C?= =?UTF-8?q?=E7=9A=84virtualHost=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.vue | 2 +- .../uni-breadcrumb-item.vue | 13 +- .../uni-breadcrumb/uni-breadcrumb.vue | 5 + .../uni-datetime-picker/calendar.vue | 155 +++++----- .../uni-datetime-picker/time-picker.vue | 32 +- .../uni-datetime-picker.vue | 12 +- .../uni-file-picker/uni-file-picker.vue | 11 +- .../components/uni-forms/uni-forms.vue | 11 +- .../uni-goods-nav/uni-goods-nav.vue | 4 +- .../uni-row/components/uni-col/uni-col.vue | 11 +- .../uni-row/components/uni-row/uni-row.vue | 13 +- .../components/uni-table/uni-table.vue | 23 +- .../components/uni-tbody/uni-tbody.vue | 35 ++- .../uni-table/components/uni-td/uni-td.vue | 13 +- .../components/uni-th/filter-dropdown.vue | 7 +- .../uni-table/components/uni-th/uni-th.vue | 13 +- .../components/uni-thead/uni-thead.vue | 196 ++++++------ .../uni-table/components/uni-tr/uni-tr.vue | 281 +++++++++--------- 18 files changed, 475 insertions(+), 362 deletions(-) diff --git a/pages/index/index.vue b/pages/index/index.vue index 32f5d7b31..dad5d2cc9 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -169,7 +169,7 @@ url: 'data-picker' }, // #endif - // #ifndef APP-NVUE || MP-KUAISHOU || MP-LARK || MP-TOUTIAO || MP-BAIDU + // #ifndef APP-NVUE || MP-KUAISHOU || MP-LARK || MP-BAIDU { name: 'DatetimePicker 日期时间选择', url: 'datetime-picker' diff --git a/uni_modules/uni-breadcrumb/components/uni-breadcrumb-item/uni-breadcrumb-item.vue b/uni_modules/uni-breadcrumb/components/uni-breadcrumb-item/uni-breadcrumb-item.vue index 85eeb64e6..6920f9055 100644 --- a/uni_modules/uni-breadcrumb/components/uni-breadcrumb-item/uni-breadcrumb-item.vue +++ b/uni_modules/uni-breadcrumb/components/uni-breadcrumb-item/uni-breadcrumb-item.vue @@ -21,9 +21,14 @@ return { currentPage: "" } - }, - options: { - virtualHost: true + }, + options: { + // #ifdef MP-TOUTIAO + virtualHost: false, + // #endif + // #ifndef MP-TOUTIAO + virtualHost: true + // #endif }, props: { to: { @@ -113,7 +118,7 @@ &:first-child &--slot { padding-left: 0; } - + &:last-child &--separator { display: none; } diff --git a/uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue b/uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue index 1d6b0582f..d816af41b 100644 --- a/uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue +++ b/uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue @@ -13,7 +13,12 @@ */ export default { options: { + // #ifdef MP-TOUTIAO + virtualHost: false, + // #endif + // #ifndef MP-TOUTIAO virtualHost: true + // #endif }, props: { separator: { diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue b/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue index 2e952dc39..31f7340ec 100644 --- a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue +++ b/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue @@ -58,9 +58,8 @@ - + @@ -101,13 +100,21 @@ - + diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue b/uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue index 82f469f44..8716d42b0 100644 --- a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue +++ b/uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue @@ -81,10 +81,16 @@ diff --git a/uni_modules/uni-table/components/uni-tr/uni-tr.vue b/uni_modules/uni-table/components/uni-tr/uni-tr.vue index a3b20900d..56abd4bc6 100644 --- a/uni_modules/uni-table/components/uni-tr/uni-tr.vue +++ b/uni_modules/uni-table/components/uni-tr/uni-tr.vue @@ -2,16 +2,18 @@ - + - + - - + + @@ -20,156 +22,163 @@ From 0a9e8af998ac84d7c7f5efe02332037f488a2307 Mon Sep 17 00:00:00 2001 From: HRK <119110706+18148764734@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:36:07 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20datetime-picker=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E6=8F=92=E4=BB=B6=E5=B8=82=E5=9C=BA=E6=9B=B4=E6=96=B0=E6=97=A5?= =?UTF-8?q?=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uni-datetime-picker/changelog.md | 2 ++ uni_modules/uni-datetime-picker/package.json | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/uni_modules/uni-datetime-picker/changelog.md b/uni_modules/uni-datetime-picker/changelog.md index e5ad7c187..0e7647758 100644 --- a/uni_modules/uni-datetime-picker/changelog.md +++ b/uni_modules/uni-datetime-picker/changelog.md @@ -1,3 +1,5 @@ +## 2.2.33(2024-04-15) +- 修复 抖音小程序事件传递失效bug ## 2.2.32(2024-02-20) - 修复 日历的close事件触发异常的bug [详情](https://github.com/dcloudio/uni-ui/issues/844) ## 2.2.31(2024-02-20) diff --git a/uni_modules/uni-datetime-picker/package.json b/uni_modules/uni-datetime-picker/package.json index 2c8614607..c87094993 100644 --- a/uni_modules/uni-datetime-picker/package.json +++ b/uni_modules/uni-datetime-picker/package.json @@ -1,7 +1,7 @@ { "id": "uni-datetime-picker", "displayName": "uni-datetime-picker 日期选择器", - "version": "2.2.32", + "version": "2.2.33", "description": "uni-datetime-picker 日期时间选择器,支持日历,支持范围选择", "keywords": [ "uni-datetime-picker", @@ -46,7 +46,8 @@ "platforms": { "cloud": { "tcb": "y", - "aliyun": "y" + "aliyun": "y", + "alipay": "n" }, "client": { "App": { From b5a353469b78c61fca112fa2b02da5a7cfdb15a9 Mon Sep 17 00:00:00 2001 From: HRK <119110706+18148764734@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:42:36 +0800 Subject: [PATCH 3/3] =?UTF-8?q?feat:=20search-bar=E6=96=B0=E5=A2=9EtextCol?= =?UTF-8?q?or=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/vue/search-bar/search-bar.vue | 2 +- uni_modules/uni-search-bar/changelog.md | 2 ++ .../components/uni-search-bar/uni-search-bar.vue | 7 ++++++- uni_modules/uni-search-bar/package.json | 5 +++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/pages/vue/search-bar/search-bar.vue b/pages/vue/search-bar/search-bar.vue index 79558efb9..be4438988 100644 --- a/pages/vue/search-bar/search-bar.vue +++ b/pages/vue/search-bar/search-bar.vue @@ -5,7 +5,7 @@ - + 当前输入为:{{ searchValue }} diff --git a/uni_modules/uni-search-bar/changelog.md b/uni_modules/uni-search-bar/changelog.md index ddd881944..76bf45ac2 100644 --- a/uni_modules/uni-search-bar/changelog.md +++ b/uni_modules/uni-search-bar/changelog.md @@ -1,3 +1,5 @@ +## 1.2.9(2024-04-17) +- 修复 textColor不生效的bug ## 1.2.8(2024-02-22) - 修复 清空按钮emit值错误的bug ## 1.2.7(2024-02-21) diff --git a/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue b/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue index 58a0025d7..0bfd40ecf 100644 --- a/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue +++ b/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue @@ -8,7 +8,7 @@ {{ placeholder }}