提交 a0a48f69 编写于 作者: 雪洛's avatar 雪洛

feat: web端开启long-list示例,调整swiper-list示例

上级 dabf8c77
...@@ -1103,8 +1103,7 @@ ...@@ -1103,8 +1103,7 @@
"style": { "style": {
"navigationBarTitleText": "半屏弹窗" "navigationBarTitleText": "半屏弹窗"
} }
}, },
// #ifdef APP
{ {
"path": "pages/template/long-list/long-list", "path": "pages/template/long-list/long-list",
"style": { "style": {
...@@ -1118,8 +1117,7 @@ ...@@ -1118,8 +1117,7 @@
"navigationBarTitleText": "顶部banner长列表", "navigationBarTitleText": "顶部banner长列表",
"enablePullDownRefresh": true "enablePullDownRefresh": true
} }
}, },
// #endif
{ {
"path": "pages/template/pull-zoom-image/pull-zoom-image", "path": "pages/template/pull-zoom-image/pull-zoom-image",
"style": { "style": {
......
...@@ -54,8 +54,7 @@ ...@@ -54,8 +54,7 @@
export default { export default {
data() { data() {
return { return {
list: [ list: [
// #ifdef APP
{ {
id: 'long-list', id: 'long-list',
url: 'long-list', url: 'long-list',
...@@ -72,8 +71,7 @@ ...@@ -72,8 +71,7 @@
url: 'long-list2' url: 'long-list2'
}, },
] as Page[], ] as Page[],
}, },
// #endif
{ {
id: 'list-news', id: 'list-news',
url: 'list-news', url: 'list-news',
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<view class="swiper-list"> <view class="swiper-list">
<scroll-view ref="tabScroll" class="swiper-tabs" direction="horizontal" :show-scrollbar="false"> <scroll-view ref="tabScroll" class="swiper-tabs" direction="horizontal" :show-scrollbar="false">
<view class="flex-row" style="align-self: flex-start;"> <view class="flex-row" style="align-self: flex-start;">
<text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''" <text ref="swipertab" space="nbsp" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)"> v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)">
{{item.name}} {{item.name}}
</text> </text>
...@@ -209,7 +209,7 @@ ...@@ -209,7 +209,7 @@
// 滚动到水平中心位置 // 滚动到水平中心位置
const scroll_x = x - this.swiperWidth / 2 const scroll_x = x - this.swiperWidth / 2
if(this.tabScrollView !== null){ if(this.tabScrollView != null){
this.tabScrollView!.scrollLeft = scroll_x this.tabScrollView!.scrollLeft = scroll_x
} }
}, },
...@@ -238,6 +238,9 @@ ...@@ -238,6 +238,9 @@
.swiper-list { .swiper-list {
height: 100%; height: 100%;
/* #ifdef WEB */
flex: 1;
/* #endif */
} }
.swiper-tabs { .swiper-tabs {
...@@ -249,6 +252,7 @@ ...@@ -249,6 +252,7 @@
color: #555; color: #555;
font-size: 16px; font-size: 16px;
padding: 12px 25px; padding: 12px 25px;
white-space: nowrap;
} }
.swiper-tabs-item-active { .swiper-tabs-item-active {
......
...@@ -165,7 +165,9 @@ ...@@ -165,7 +165,9 @@
const percentage = Math.abs(current_offset_x) / this.swiperWidth const percentage = Math.abs(current_offset_x) / this.swiperWidth
// 通知更新指示线 // 通知更新指示线
this.updateTabIndicator(current_index, move_to_index, percentage) if (current_index != move_to_index) {
this.updateTabIndicator(current_index, move_to_index, percentage)
}
// 首次可见时初始化数据 // 首次可见时初始化数据
this.initSwiperItemData(move_to_index) this.initSwiperItemData(move_to_index)
...@@ -242,6 +244,9 @@ ...@@ -242,6 +244,9 @@
.swiper-list { .swiper-list {
height: 100%; height: 100%;
/* #ifdef WEB */
flex: 1;
/* #endif */
} }
.swiper-tabs { .swiper-tabs {
...@@ -253,6 +258,7 @@ ...@@ -253,6 +258,7 @@
color: #555; color: #555;
font-size: 16px; font-size: 16px;
padding: 12px 25px; padding: 12px 25px;
white-space: nowrap;
} }
.swiper-tabs-item-active { .swiper-tabs-item-active {
......
...@@ -191,6 +191,7 @@ ...@@ -191,6 +191,7 @@
color: #555; color: #555;
font-size: 16px; font-size: 16px;
padding: 12px 25px; padding: 12px 25px;
white-space: nowrap;
} }
.swiper-tabs-item-active { .swiper-tabs-item-active {
......
...@@ -143,6 +143,7 @@ ...@@ -143,6 +143,7 @@
color: #555; color: #555;
font-size: 16px; font-size: 16px;
margin: 15px 25px 5px 25px; margin: 15px 25px 5px 25px;
white-space: nowrap;
} }
.swiper-tabs-item-active { .swiper-tabs-item-active {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册