纸通宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
1012 B

<view wx:if="{{ show }}" class="l-class l-noticebar" style="color: {{ color }};background-color: {{ backgroundcolor }}">
<text wx:if="{{icon}}" class="cuIcon-{{icon}} text-gray" style="font-size:36rpx;margin:0rpx 16rpx 0rpx 24rpx;color:{{color}}"></text>
<!-- <image wx:if="{{icon}}" style="width:230rpx;height:60rpx" src="/assets/image/ico_notice.png"></image> -->
<swiper autoplay vertical interval="{{4*speed}}" circular="{{true}}" class="l-noticebar-content-wrap" wx:if="{{type=='swip'}}">
<block wx:for="{{swipArr}}" wx:key="swip">
<swiper-item data-index="{{index}}" mut-bind:tap="onSwip">{{item}}</swiper-item>
</block>
</swiper>
<view class="l-noticebar-content-wrap l-noticebar-content-wrap-view" wx:else>
<view class="l-noticebar-content" mut-bind:tap="handleTap" animation="{{ animationData }}">
<slot></slot>
</view>
</view>
<text wx:if="{{close}}" class="cuIcon-{{mode}} text-gray" style="font-size:36rpx;color:{{color}}" bindtap="onClose"></text>
</view>