123456789101112131415161718192021222324252627282930313233343536373839 |
- <!-- 设备二次激活 -->
- <block wx:if="{{showType == 1}}">
- <view class="bg">
- <!-- 新版 2025-0603 -->
- <view class="title">
- 第一步:固定设备到前挡风玻璃
- </view>
- <text style="font-size: 26rpx;">将设备粘贴固定到<text style="color: rgb(0, 184, 79);">前挡风玻璃内后视镜右侧,按压10秒</text>,粘牢即可。
- </text>
-
- <image src="/static/etc/signGetAuth/tip-zt.png" mode="widthFix" class="tip-img" />
- <view class="title" style="margin-top: 60rpx;">
- 第二步:同时开启手机蓝牙和ETC蓝牙
- </view>
-
- <text class="msg">1.激活前必须确保手机蓝牙和ETC蓝牙已开启;
- 2.ETC蓝牙有效连接时长为1分钟,超时蓝牙则会自动关闭,如关闭可再次开启;</text>
-
- <view class="msg-warn">注意:无需手机蓝牙去连接ETC蓝牙,只需打开即可;</view>
-
- <image src="/static/etc/signGetAuth/tip-second.png" mode="widthFix" class="tip-img" />
- </view>
-
- <button class="bottom-bg" loading="{{loading}}" bind:tap="tapStar">下一步</button>
- </block>
- <block wx:elif="{{showType == 2 }}">
- <!-- 搜索设备 -->
- <view class="col-center" style="margin-top: 200rpx;">
- <image src="/static/etc/signGetAuth/search-fail.png" mode="widthFix" style="width: 226rpx;height: 194rpx;" />
- <view class='failTitle'>{{searchFailTitle}}</view>
- <view class="failMsg">{{searchFailMsg}}</view>
- <view class="col-center re-btn" bind:tap="tapStar">重新搜索</view>
- </view>
- </block>
- <pop-device list="{{devList}}" show="{{showPopDevice}}" bind:OnOwner="tapOwner"></pop-device>
-
- <pop-active-fail isShow="{{activeFail}}" name="{{devName}}" obu="{{obuIdStr}}" card="{{cardIdStr}}" failMsg="{{activeFailMsg}}" type="{{type}}" bind:onSure="tapActiveFailSure" />
-
- <loading isShow="{{isLoading}}" text="搜索中..." />
|