From 4aae14ae32b05f83aff279c900778e7fd58c84ee Mon Sep 17 00:00:00 2001 From: 1059537331 <1059537331@qq.com> Date: Wed, 19 Nov 2025 14:36:19 +0800 Subject: [PATCH 1/4] Merge pull request #2578 from nanasikeai/feature_wiki Feature wiki # Reviewed, transaction id: 65099 From abc6af4e3724dbcbc44ff0665dd4215beb88859c Mon Sep 17 00:00:00 2001 From: 1059537331 <1059537331@qq.com> Date: Wed, 19 Nov 2025 14:36:19 +0800 Subject: [PATCH 2/4] Merge pull request #2578 from nanasikeai/feature_wiki Feature wiki # Reviewed, transaction id: 65099 From ad3ec8b566ea906ceaf5a21674ddd62d5a02f326 Mon Sep 17 00:00:00 2001 From: 1059537331 <1059537331@qq.com> Date: Fri, 21 Nov 2025 15:50:49 +0800 Subject: [PATCH 3/4] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0backtop=E7=9A=84?= =?UTF-8?q?=E9=A2=84=E8=AE=BE=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/backtop/demo/index.ts | 63 ++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/packages/backtop/demo/index.ts b/packages/backtop/demo/index.ts index 796e8b4b3..6dffb3746 100644 --- a/packages/backtop/demo/index.ts +++ b/packages/backtop/demo/index.ts @@ -35,6 +35,69 @@ const presets = [ 'visibility-height': 40, }, }, + { + title: '文字类型', + description: '向下滚动以显示按钮', + props: { + target: '.edit-component-view', + 'visibility-height': 40, + }, + slots: { + default: `返回顶部`, + }, + }, + { + title: '图标文字组合', + description: '向下滚动以显示按钮', + props: { + target: '.edit-component-view', + 'visibility-height': 40, + extCls: 'border-radius-0', + }, + slots: { + default: ` +
+ +
+ 返回顶部 +
+
+ `, + }, + dependent: { + components: ['icon'], + }, + style: ` + .f16 { + font-size: 16px; + } + .text { + font-size: 12px; + } + .border-radius-0 { + border-radius: 0; + }`, + }, + { + title: '自定义样式', + description: '向下滚动以显示按钮', + props: { + target: '.edit-component-view', + 'visibility-height': 40, + }, + slots: { + default: ` + + `, + }, + dependent: { + components: ['icon'], + }, + style: ` + .f22 { + font-size: 22px; + }`, + }, ]; // 组件属性,用来自动生成属性文档 From 3bbe32088952733d2bc8cc98e80015f3bdbef264 Mon Sep 17 00:00:00 2001 From: 1059537331 <1059537331@qq.com> Date: Fri, 21 Nov 2025 15:52:04 +0800 Subject: [PATCH 4/4] Merge branch 'feature_wiki' of https://github.com/1059537331/bkui-vue3 into feature_wiki # Reviewed, transaction id: 65452