You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
486 B

<view class="container">
<view class="qrcode-container">
<text class="qrcode-title">二维码</text>
<view class="qrcode-content">
<!-- 这里可以添加二维码图片 -->
<view wx:if="{{qrCodeUrl}}" class="qrcode-image">
<image src="{{qrCodeUrl}}" mode="aspectFit"></image>
</view>
<view wx:else class="qrcode-placeholder">
<text class="placeholder-text">二维码将显示在这里</text>
</view>
</view>
</view>
</view>