|
1234567891011121314151617 |
- <!--pages/component/service/index.wxml-->
- <view>
- <image class="serviceIcon" style="top:{{nowPage!=1?'100rpx;':'206rpx;'}}" bindtap="maskShow" src="{{imgUrl+'/newIcon/3.png'}}"></image>
- <image class="serviceIcon" style="top:206rpx;" wx:if="{{nowPage!=1}}" bindtap="lookOrder" src="{{imgUrl+'/newImages7/18.png'}}"></image>
- <!-- <image class="serviceIcon" wx:if="{{nowPage!=1}}" bindtap="openYuyue" src="{{imgUrl+'/newIcon/4.png'}}"></image> -->
- <image class="serviceIcon" wx:if="{{!buyState && nowPage==1}}" bindtap="placingControl" src="{{imgUrl+'/newImages6/28.png'}}"></image>
- <view wx:if="{{maskState}}" class="maskGroup" catchtouchmove="ture">
- <view class="contentGroup">
- <image style="width:100%;height:100%;" src="{{imgUrl+'/images/serviceBg.png'}}"></image>
- <image class="closeService" bindtap="closeService" src="{{imgUrl+'/images/closeService.png'}}"></image>
- <view class="btnGroup1" bindtap="newCarConsultation"></view>
- <button style="min-height: 0;" class="serviceBtn" open-type="contact"></button>
- </view>
- </view>
- <placingOrder bindplacing="placingControl" wx:if="{{placing}}"></placingOrder>
- <yuyue bindyuyue="openYuyue" wx:if="{{yuyueShow}}"></yuyue>
- </view>
|