12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!--plugin/etc/pages/exbSignGetAuth/exbSignGetAuth.wxml-->
- <block wx:if="{{signType == 0}}">
-
- <view class="col-start" style="height: 100vh;background-color: #F6F6F6;">
- <view class="card-bg">
-
- <!-- <view class="tip-title">微信签约</view> -->
-
- <view class="row-center" style="margin-top: 88rpx;">
- <image src="../../../static/etc/exbSignGetAuth/etc.png" mode="widthFix" class="tip-img" />
- <image src="../../../static/etc/exbSignGetAuth/change.png" mode="widthFix" style="width: 40rpx;height: 26rpx;margin-left: 52rpx;margin-right: 52rpx;" />
- <image src="../../../static/etc/exbSignGetAuth/wx.png" mode="widthFix" class="tip-img" />
- </view>
-
- <view class="tip-title" style="font-size: 28rpx;margin-top: 92rpx;margin-bottom: 28rpx;">我们需要获取您的微信授权,开通免密支付</view>
-
- <view class="pic-item">
- <image src="../../../static/etc/exbSignGetAuth/cz.png" mode="widthFix" class='pic-img' />
- <view class="col-start" style="align-items: flex-start;margin-left: 26rpx;">
- <view class="tip-title" style="font-size: 28rpx; margin-bottom: 4rpx;">无需充值</view>
- <view class="pic-msg">绑定微信支付,高速通行后自动扣费</view>
- <view class="line"></view>
- </view>
- </view>
- <view class="pic-item">
- <image src="../../../static/etc/exbSignGetAuth/aq.png" mode="widthFix" class='pic-img' />
- <view class="col-start" style="align-items: flex-start;margin-left: 26rpx;">
- <view class="tip-title" style="font-size: 28rpx; margin-bottom: 4rpx;">安全防盗刷</view>
- <view class="pic-msg">ETC设备仅限国家认证的专用设备扣款</view>
- <view class="line"></view>
- </view>
- </view>
- <view class="pic-item">
- <image src="../../../static/etc/exbSignGetAuth/gf.png" mode="widthFix" class='pic-img' />
- <view class="col-start" style="align-items: flex-start;margin-left: 26rpx;">
- <view class="tip-title" style="font-size: 28rpx; margin-bottom: 4rpx;">官方认证</view>
- <view class="pic-msg">微信官方保障,可靠安全</view>
-
- </view>
- </view>
- </view>
- <view class="t-tab-bar ">
- <view class="t-tab-bar--padding">
- <block wx:if="{{isNeedLogin}}">
- <etc-login type="1" bind:OnUpdate="configReloadLogin"></etc-login>
- </block>
- <block wx:else>
- <view bind:tap="onTapSign" class="bottom-btn row-center">开通服务</view>
- </block>
- </view>
- </view>
- </view>
- </block>
- <block wx:elif="{{signType == 1}}">
- <view class="col-start">
- <image src="../../../static/etc/signGetAuth/sign_status.png" mode="widthFix" style="width: 240rpx;height: 240rpx;" class="status-img" />
- <view style="font-size: 34rpx;margin-top: 6rpx;color: rgb(8, 14, 26);">正在验证签约状态…</view>
- </view>
- </block>
-
- <block wx:elif="{{signType == 2}}">
- <view class="col-start">
- <image src="../../../static/etc/signGetAuth/success.png" mode="widthFix" class="status-img" />
- <view style="font-size: 34rpx;margin-top: 62rpx;color: rgb(8, 14, 26);">验证完成</view>
- <view style="color: rgb(155, 161, 175);font-size: 28rpx;margin-top: 4rpx;">页面自动跳转中...</view>
- </view>
- </block>
-
- <block wx:elif="{{signType == 3}}">
- <view class="col-start">
- <image src="../../../static/etc/signGetAuth/fail.png" mode="widthFix" class="status-img" />
- <view style="font-size: 34rpx;margin-top: 62rpx;color: rgb(8, 14, 26);">签约失败</view>
- <view style="color: rgb(155, 161, 175);font-size: 28rpx;margin-top: 4rpx;">{{failMsg}}</view>
- <view class="re-btn col-center" bind:tap="tapReload">重新签约</view>
- </view>
- </block>
|