JMApp/pages/washCodeDetail/washCodeDetail.wxml
2025-04-05 23:47:00 +08:00

28 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="container">
<page-loding wx:if="{{showLoding}}"></page-loding>
<image class="login-bg" mode="widthFix" src="/img/login-bg.png"></image>
<view class="yellow-bg"></view>
<image class="car" src="/img/car.png"></image>
<view class="text-inner">
<view class="page-title">领取洗车码</view>
<view class="code">{{info.name}}</view>
<view class="use-location"> 本洗车码可在以下网点使用 <view class="list">
<view class="item" wx:for="{{info.agent}}">{{item.t_name}}</view>
</view>
<view class="time">有效期:{{info.starttime}} - {{info.deadline}}</view>
</view>
<view bindtap="received" class="btn" wx:if="{{info.token}}">立即领取</view>
<view class="tips">领取后在洗车码页面中查看</view>
<view class="howTOuse">
<view class="title">如何使用洗车码</view>
<view class="text">
<text>1、打开微信扫一扫
2、扫描洗车机上的二维码
3、点击“洗车码”图标
4、选择要使用的洗车码
5、点击最下方按钮启动机器</text>
</view>
</view>
</view>
</view>