|
@@ -6,7 +6,7 @@
|
|
|
<swiper vertical autoplay circular interval="3500" class="tui-swiper">
|
|
|
<swiper-item v-for="(item,index) in list" :key="index" class="tui-swiper-item">
|
|
|
<view class="tui-news-item" @tap='detail(item)'>
|
|
|
- <text class="iconfont icon-xiaochengxu"></text>
|
|
|
+ <text class="news-dot"></text>
|
|
|
{{item.title}}
|
|
|
</view>
|
|
|
</swiper-item>
|
|
@@ -109,9 +109,15 @@
|
|
|
text-overflow: ellipsis;
|
|
|
font-size: $font-size-24;
|
|
|
color: #666666;
|
|
|
- .icon-xiaochengxu{
|
|
|
- font-size: $font-size-24;
|
|
|
- margin-right: 10rpx;
|
|
|
+ .news-dot{
|
|
|
+ display: inline-block;
|
|
|
+ width: 10rpx;
|
|
|
+ height: 10rpx;
|
|
|
+ background-color: #999999;
|
|
|
+ border-radius: 50%;
|
|
|
+ margin-right: 8rpx;
|
|
|
+ float: left;
|
|
|
+ margin-top: 10rpx;
|
|
|
}
|
|
|
}
|
|
|
|