| @@ -159,7 +159,7 @@ | |||||
| </view> | </view> | ||||
| <!-- 问卷调查 --> | <!-- 问卷调查 --> | ||||
| <view class="b1" style="opacity:{{opacity}};display: {{display}};position: fixed;top:{{navigationBarHeight}};bottom: 0px;left: 0px;right: 0px;background: rgba(0, 0, 0, 0.8);overflow: hidden;z-index: 10;" animation="{{queueData}}"> | |||||
| <view class="b1" style="opacity:{{opacity}};display: {{display}};position: fixed;top:{{navigationBarHeight}};bottom: 0px;left: 0px;right: 0px;background: rgba(0, 0, 0, 0.8);overflow: hidden;z-index: 13;" animation="{{queueData}}"> | |||||
| <view id='con' class='con'> | <view id='con' class='con'> | ||||
| <image class='wmclose' mode='widthFix' src="{{closedUrl}}" bindtap="closeQuestion"></image> | <image class='wmclose' mode='widthFix' src="{{closedUrl}}" bindtap="closeQuestion"></image> | ||||
| <image class='ques_gou' mode='widthFix' src="{{quesGouUrl}}"></image> | <image class='ques_gou' mode='widthFix' src="{{quesGouUrl}}"></image> | ||||
| @@ -566,7 +566,7 @@ button::after { | |||||
| bottom: 0; | bottom: 0; | ||||
| padding-bottom: 22rpx; | padding-bottom: 22rpx; | ||||
| padding-top: 22rpx; | padding-top: 22rpx; | ||||
| z-index: 10; | |||||
| z-index: 12; | |||||
| /* background: #fff; */ | /* background: #fff; */ | ||||
| } | } | ||||
| .btnTxt{ | .btnTxt{ | ||||
| @@ -477,6 +477,8 @@ progress{ | |||||
| font-weight:500; | font-weight:500; | ||||
| color:#FD782D; | color:#FD782D; | ||||
| } | } | ||||
| i-tabs i-tabs-scroll{ | i-tabs i-tabs-scroll{ | ||||
| background: #F4F5F9!important; | background: #F4F5F9!important; | ||||
| } | |||||
| } | |||||
| @@ -10,7 +10,7 @@ | |||||
| <!-- 有车牌的时候显示 --> | <!-- 有车牌的时候显示 --> | ||||
| <view class='passUp'> | <view class='passUp'> | ||||
| <view class='addicense_active' wx:if='{{carList.length>0}}'> | <view class='addicense_active' wx:if='{{carList.length>0}}'> | ||||
| <swiper current="{{current}}" bindchange='onSlideChangeEnd' class='swiper' circular='true' indicator-dots='{{indicatorDots}}' autoplay='{{autoplay}}' interval='1500' duration='1500'> | |||||
| <swiper current="{{current}}" bindchange='onSlideChangeEnd' class='swiper swiper-box' circular='true' indicator-dots='{{indicatorDots}}' autoplay='{{autoplay}}' interval='1500' duration='1500'> | |||||
| <block wx:for='{{carList}}' wx:key="unique"> | <block wx:for='{{carList}}' wx:key="unique"> | ||||
| <swiper-item class="swiper-item" data-memberKeyword='{{item.carNumber}}'> | <swiper-item class="swiper-item" data-memberKeyword='{{item.carNumber}}'> | ||||
| <view class='clearfix clearfix1'> | <view class='clearfix clearfix1'> | ||||
| @@ -853,4 +853,24 @@ button::after { | |||||
| top:45rpx; | top:45rpx; | ||||
| right: 30rpx; | right: 30rpx; | ||||
| width: 60rpx; | width: 60rpx; | ||||
| } | |||||
| .swiper-box .wx-swiper-dots.wx-swiper-dots-horizontal{ | |||||
| margin-bottom: 2rpx; | |||||
| } | |||||
| .swiper-box .wx-swiper-dot{ | |||||
| width:40rpx; | |||||
| display: inline-flex; | |||||
| height: 6rpx; | |||||
| margin-left: 10rpx; | |||||
| border-radius:6rpx; | |||||
| justify-content:space-between; | |||||
| } | |||||
| .swiper-box .wx-swiper-dot::before{ | |||||
| content: ''; | |||||
| flex-grow: 1; | |||||
| background: #ccc8c8; | |||||
| } | |||||
| .swiper-box .wx-swiper-dot-active::before{ | |||||
| background:#f6792b; | |||||
| } | } | ||||