From 186d7b48898b5384b01725cafed4fa46c86d3d99 Mon Sep 17 00:00:00 2001 From: wanganxp Date: Wed, 30 Aug 2023 08:44:35 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=87=E6=BB=A4=E6=97=A0=E7=94=A8=E7=9A=84?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 34 +- .../list-view.uvue} | 0 pages/component/swiper/swiper.uvue | 2 +- pages/tabBar/API.uvue | 12 +- pages/tabBar/CSS.uvue | 712 +++++++++--------- pages/tabBar/component.uvue | 10 +- 6 files changed, 399 insertions(+), 371 deletions(-) rename pages/component/{list-view-autotest/list-view-autotest.uvue => list-view/list-view.uvue} (100%) diff --git a/pages.json b/pages.json index a2c40365..5927fed5 100644 --- a/pages.json +++ b/pages.json @@ -777,8 +777,7 @@ { "path": "pages/CSS/border/complex-border/complex-border", "style": { - "navigationBarTitleText": "border属性组合示例", - "enablePullDownRefresh": false + "navigationBarTitleText": "border属性组合示例" } }, { @@ -791,64 +790,55 @@ { "path": "pages/template/calendar/calendar", "style": { - "navigationBarTitleText": "日历", - "enablePullDownRefresh": false + "navigationBarTitleText": "日历" } }, { "path": "pages/template/custom-refresher/custom-refresher", "style": { - "navigationBarTitleText": "自定义下拉刷新", - "enablePullDownRefresh": false + "navigationBarTitleText": "自定义下拉刷新" } }, { "path": "pages/API/get-window-info/get-window-info", "style": { - "navigationBarTitleText": "", - "enablePullDownRefresh": false + "navigationBarTitleText": "" } }, { "path": "pages/template/half-screen/half-screen", "style": { - "navigationBarTitleText": "半屏弹窗", - "enablePullDownRefresh": false + "navigationBarTitleText": "半屏弹窗" } }, { "path": "pages/template/long-list/long-list", "style": { - "navigationBarTitleText": "复杂长列表", - "enablePullDownRefresh": false + "navigationBarTitleText": "复杂长列表" } }, { - "path": "pages/component/list-view-autotest/list-view-autotest", + "path": "pages/component/list-view/list-view", "style": { - "navigationBarTitleText": "list-view-autotest", - "enablePullDownRefresh": false + "navigationBarTitleText": "list-view" } }, { "path": "pages/component/scroll-view/scroll-view-props", "style": { - "navigationBarTitleText": "非下拉刷新的scroll-view属性示例", - "enablePullDownRefresh": false + "navigationBarTitleText": "非下拉刷新的scroll-view属性示例" } }, { "path": "pages/component/scroll-view/scroll-view-refresher-props", "style": { - "navigationBarTitleText": "下拉刷新的scroll-view属性示例", - "enablePullDownRefresh": false + "navigationBarTitleText": "下拉刷新的scroll-view属性示例" } }, { "path": "pages/component/scroll-view/scroll-view-custom-refresher-props", "style": { - "navigationBarTitleText": "自定义下拉刷新的scroll-view属性示例", - "enablePullDownRefresh": false + "navigationBarTitleText": "自定义下拉刷新的scroll-view属性示例" } } ], @@ -904,4 +894,4 @@ } ] } -} \ No newline at end of file +} diff --git a/pages/component/list-view-autotest/list-view-autotest.uvue b/pages/component/list-view/list-view.uvue similarity index 100% rename from pages/component/list-view-autotest/list-view-autotest.uvue rename to pages/component/list-view/list-view.uvue diff --git a/pages/component/swiper/swiper.uvue b/pages/component/swiper/swiper.uvue index d0dd5525..ac44e43d 100644 --- a/pages/component/swiper/swiper.uvue +++ b/pages/component/swiper/swiper.uvue @@ -34,7 +34,7 @@ 是否循环 - 间隔时间 + 间隔时间(毫秒) diff --git a/pages/tabBar/API.uvue b/pages/tabBar/API.uvue index 86a2ae9e..3386a276 100644 --- a/pages/tabBar/API.uvue +++ b/pages/tabBar/API.uvue @@ -78,7 +78,7 @@ name: '页面跳转', url: 'navigator', }, - { + /* { name: '页面栈管理', url: 'getCurrentPages', enable: false, @@ -87,7 +87,7 @@ name: '设置导航条标题', url: 'set-navigation-bar-title', enable: false, - }, + }, */ { name: '设置导航条颜色', url: 'set-navigation-bar-color', @@ -98,9 +98,9 @@ enable: false, }, { - name: '下拉刷新', + name: '页面下拉刷新', url: 'pull-down-refresh', - enable: false, + enable: true, }, { name: '将页面滚动到指定位置', @@ -307,7 +307,7 @@ { name: "背景音频", url: "background-audio", - }, + }, { name: "视频选择和拍照", url: "video", @@ -497,4 +497,4 @@ .item { margin-bottom: 12px; } - \ No newline at end of file + diff --git a/pages/tabBar/CSS.uvue b/pages/tabBar/CSS.uvue index 798696b6..c0e3485c 100644 --- a/pages/tabBar/CSS.uvue +++ b/pages/tabBar/CSS.uvue @@ -1,345 +1,383 @@ \ No newline at end of file diff --git a/pages/tabBar/component.uvue b/pages/tabBar/component.uvue index 5188eaee..aefeac94 100644 --- a/pages/tabBar/component.uvue +++ b/pages/tabBar/component.uvue @@ -91,12 +91,12 @@ export default { name: 'list(新闻)', url: '/pages/component/list-news/list', }, + // { + // name: 'list', + // url: '/pages/component/long-list/long-list', + // }, { - name: 'list', - url: '/pages/component/long-list/long-list', - }, - { - name: 'list-view-autotest', + name: 'list-view', }, ] as Page[], }, -- GitLab