c46ffcf567
style: 统一界面视觉风格与配色方 在遮罩层和内容区都加上 catchtouchmove 阻止触摸穿透滚动:
14 lines
579 B
Plaintext
14 lines
579 B
Plaintext
<view class="qrcode-modal" wx:if="{{visible}}" bindtap="onClose" catchtouchmove="noop">
|
|
<view class="qrcode-container" catchtap catchtouchmove="noop">
|
|
<view class="qrcode-title">预约凭证</view>
|
|
<view class="qrcode-canvas-wrap">
|
|
<canvas canvas-id="qrcodeCanvas" class="qrcode-canvas"></canvas>
|
|
<view class="qrcode-loading" wx:if="{{loading}}">
|
|
<view class="qrcode-spinner"></view>
|
|
</view>
|
|
</view>
|
|
<view class="qrcode-id">{{qrcodeId}}</view>
|
|
<view class="qrcode-tip">请向工作人员出示此二维码</view>
|
|
</view>
|
|
</view>
|